merge setuid variants
[trinity.git] / syscalls / newfstat.c
blobece4b3ff790262d661a3d1c2ea8a341ccadfc8cc
1 /*
2 * SYSCALL_DEFINE2(newfstat, unsigned int, fd, struct stat __user *, statbuf)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_newfstat = {
7 .name = "newfstat",
8 .num_args = 2,
9 .arg1name = "fd",
10 .arg1type = ARG_FD,
11 .arg2name = "statbuf",
12 .arg2type = ARG_ADDRESS,
13 .flags = NEED_ALARM,
14 .group = GROUP_VFS,