summaryrefslogtreecommitdiff
path: root/src/unistd/setpgid.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-23 15:22:33 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-23 15:22:33 -0500
commit1221e834f49adb91eb0b7443a57274f2611459c2 (patch)
tree7afb7ed5a203ddefd5559005af7ec61d801b972e /src/unistd/setpgid.c
parentf546f27d1fdb8d2663b2fbb130f53ee32cac90b0 (diff)
compile in current environment
Diffstat (limited to 'src/unistd/setpgid.c')
-rw-r--r--src/unistd/setpgid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/setpgid.c b/src/unistd/setpgid.c
index 561dadf0..28769713 100644
--- a/src/unistd/setpgid.c
+++ b/src/unistd/setpgid.c
@@ -6,7 +6,7 @@
int setpgid(pid_t pid, pid_t pgid)
{
- SC(int, pid, pgid);
+ SYSCALL("setpgid", int, -1, pid, pgid, 0, 0, 0, 0);
}
/*
POSIX(1)