summaryrefslogtreecommitdiff
path: root/libc/posix/fork.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/posix/fork.c')
-rw-r--r--libc/posix/fork.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/posix/fork.c b/libc/posix/fork.c
index 01b527919..4946a40b8 100644
--- a/libc/posix/fork.c
+++ b/libc/posix/fork.c
@@ -23,7 +23,7 @@
Return -1 for errors, 0 to the new process,
and the process ID of the new process to the old process. */
int
-__fork ()
+__fork (void)
{
__set_errno (ENOSYS);
return -1;