remove [64] cleanup TODO
[trinity.git] / syscalls / getpgid.c
blob7fa7db64eab4258d8a2f7f157951d0a241fe3638
1 /*
2 * SYSCALL_DEFINE1(getpgid, pid_t, pid)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_getpgid = {
7 .name = "getpgid",
8 .num_args = 1,
9 .arg1name = "pid",
10 .arg1type = ARG_PID,
11 .rettype = RET_PID_T,