blob: b66d171fed4ab4ac5ed76053f6694d2a1fbad50b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <unistd.h>
#include "syscall.h"
int setpgid(pid_t pid, pid_t pgid)
{
return syscall(SYS_setpgid, pid, pgid);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|