move_pages: just use calloc
[trinity.git] / syscalls / newstat.c
blob48dccbc5dc799b42461e34c9d2a699cb975ec97e
1 /*
2 * SYSCALL_DEFINE2(newstat, const char __user *, filename, struct stat __user *, statbuf)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_newstat = {
7 .name = "newstat",
8 .num_args = 2,
9 .arg1name = "filename",
10 .arg1type = ARG_PATHNAME,
11 .arg2name = "statbuf",
12 .arg2type = ARG_ADDRESS,
13 .group = GROUP_VFS,