X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Funistd%2Fsetpgid.c;h=061606951d4f170ad9bf80b31ee3414a12c64bac;hb=5652d70054daf3c2c9b6d475fdf9d24a940e51aa;hp=4a5a3d6b3797cea7e24e2e45b484f7b464f417d6;hpb=aa398f56fa398f2202b04e82c67f822f3233786f;p=musl 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 #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); }