diff options
author | dzwdz | 2021-08-24 17:12:57 +0200 |
---|---|---|
committer | dzwdz | 2021-08-24 17:12:57 +0200 |
commit | 3b8b07ee2eb21e043a56cdc548e2be34857adb00 (patch) | |
tree | 0871986db06db00352ceccd80680ba37e4ef56e0 /src/init/syscalls.c | |
parent | 31c1536e68399a199a09fa55571fa5bdd92cbef7 (diff) |
replace () with (void) in function definitions
`()` means that any amt of arguments will be accepted, which isn't what
i want
Diffstat (limited to 'src/init/syscalls.c')
-rw-r--r-- | src/init/syscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init/syscalls.c b/src/init/syscalls.c index 8d87beb..01dda51 100644 --- a/src/init/syscalls.c +++ b/src/init/syscalls.c @@ -8,7 +8,7 @@ _Noreturn void _syscall_exit(const char *msg, size_t len) { __builtin_unreachable(); } -int _syscall_fork() { +int _syscall_fork(void) { return _syscall(_SYSCALL_FORK, 0, 0, 0); } |