summaryrefslogtreecommitdiff
path: root/src/unistd/setpgid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/setpgid.c')
-rw-r--r--src/unistd/setpgid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/setpgid.c b/src/unistd/setpgid.c
index 28769713..2206446e 100644
--- a/src/unistd/setpgid.c
+++ b/src/unistd/setpgid.c
@@ -2,11 +2,11 @@
#include "sys/types.h"
#include <unistd.h>
#include "errno.h"
-#include "nonstd/syscall.h"
+#include "../_syscall.h"
int setpgid(pid_t pid, pid_t pgid)
{
- SYSCALL("setpgid", int, -1, pid, pgid, 0, 0, 0, 0);
+ SYSCALL(setpgid, int, -1, pid, pgid, 0, 0, 0, 0);
}
/*
POSIX(1)