summaryrefslogtreecommitdiff
path: root/src/unistd/fork.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/fork.c')
-rw-r--r--src/unistd/fork.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/fork.c b/src/unistd/fork.c
index 3da5c822..4efcc0f4 100644
--- a/src/unistd/fork.c
+++ b/src/unistd/fork.c
@@ -6,7 +6,7 @@
pid_t fork(void)
{
- SC0(pid_t);
+ SYSCALL("fork", pid_t, -1, 0, 0, 0, 0, 0, 0);
}
/*
POSIX(1)