merge unlink variants
[trinity.git] / syscalls / fremovexattr.c
blobbdb65c80c7a63aede2c573faaf33d3225000f60f
1 /*
2 * SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_fremovexattr = {
7 .name = "fremovexattr",
8 .num_args = 2,
9 .arg1name = "fd",
10 .arg1type = ARG_FD,
11 .arg2name = "name",
12 .arg2type = ARG_ADDRESS,
13 .rettype = RET_ZERO_SUCCESS,
14 .flags = NEED_ALARM,
15 .group = GROUP_VFS,