diff options
Diffstat (limited to 'src/unistd')
-rw-r--r-- | src/unistd/setpgid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/setpgid.c b/src/unistd/setpgid.c index 4a5a3d6b..06160695 100644 --- a/src/unistd/setpgid.c +++ b/src/unistd/setpgid.c @@ -1,7 +1,7 @@ #include <unistd.h> #include "syscall.h" -pid_t setpgid(pid_t pid, pid_t pgid) +int setpgid(pid_t pid, pid_t pgid) { return syscall(SYS_setpgid, pid, pgid); } |