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