move_pages: just use calloc
[trinity.git] / syscalls / getresgid.c
blob486aa934db0ce0b61bc61517626a4c7cbdd44a39
1 /*
2 * SYSCALL_DEFINE3(getresgid, gid_t __user *, rgid, gid_t __user *, egid, gid_t __user *, sgid)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_getresgid = {
7 .name = "getresgid",
8 .num_args = 3,
9 .arg1name = "rgid",
10 .arg1type = ARG_ADDRESS,
11 .arg2name = "egid",
12 .arg2type = ARG_ADDRESS,
13 .arg3name = "sgid",
14 .arg3type = ARG_ADDRESS,
19 * SYSCALL_DEFINE3(getresgid16, old_gid_t __user *, rgid, old_gid_t __user *, egid, old_gid_t __user *, sgid)
21 #include "sanitise.h"
23 struct syscallentry syscall_getresgid16 = {
24 .name = "getresgid16",
25 .num_args = 3,
26 .arg1name = "rgid",
27 .arg1type = ARG_ADDRESS,
28 .arg2name = "egid",
29 .arg2type = ARG_ADDRESS,
30 .arg3name = "sgid",
31 .arg3type = ARG_ADDRESS,