diff options
Diffstat (limited to 'src/unistd/setpgid.c')
-rw-r--r-- | src/unistd/setpgid.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/setpgid.c b/src/unistd/setpgid.c index 06160695..b66d171f 100644 --- a/src/unistd/setpgid.c +++ b/src/unistd/setpgid.c @@ -5,3 +5,11 @@ int setpgid(pid_t pid, pid_t pgid) { return syscall(SYS_setpgid, pid, pgid); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |