diff options
Diffstat (limited to 'src/unistd/setpgid.c')
| -rw-r--r-- | src/unistd/setpgid.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/unistd/setpgid.c b/src/unistd/setpgid.c new file mode 100644 index 00000000..561dadf0 --- /dev/null +++ b/src/unistd/setpgid.c @@ -0,0 +1,13 @@ +#include "stddef.h" +#include "sys/types.h" +#include <unistd.h> +#include "errno.h" +#include "nonstd/syscall.h" + +int setpgid(pid_t pid, pid_t pgid) +{ + SC(int, pid, pgid); +} +/* +POSIX(1) +*/ |
