make-it-fail fixes
[trinity.git] / syscalls / llistxattr.c
blob10217f76abe7f0b101017728f58713e8f7966442
1 /*
2 * SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list, size_t, size)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_llistxattr = {
7 .name = "llistxattr",
8 .arg1name = "pathname",
9 .arg1type = ARG_PATHNAME,
10 .arg2name = "list",
11 .arg2type = ARG_ADDRESS,
12 .arg3name = "size",
13 .arg3type = ARG_LEN,
14 .num_args = 3,
15 .group = GROUP_VFS,