module: add void to empty argument functions

Found with clang's -Wstrict-prototypes
This commit is contained in:
Rosen Penev 2020-04-09 17:38:30 -07:00 committed by Denis Kenzior
parent a47609acbe
commit 1dfc28d21a
1 changed files with 2 additions and 2 deletions

View File

@ -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);