From 1dfc28d21ad8f027158b894792a8d6d9646334f6 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Thu, 9 Apr 2020 17:38:30 -0700 Subject: [PATCH] module: add void to empty argument functions Found with clang's -Wstrict-prototypes --- src/module.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module.h b/src/module.h index c0f1c6c1..8e1a9904 100644 --- a/src/module.h +++ b/src/module.h @@ -47,5 +47,5 @@ struct iwd_module_depends { .target = #dep, \ }; -int iwd_modules_init(); -void iwd_modules_exit(); +int iwd_modules_init(void); +void iwd_modules_exit(void);