merge newfstat variants
[trinity.git] / syscalls / utimes.c
blobad3b3ae6d24cdabffd0305e12251c677d94c8ba6
1 /*
2 * SYSCALL_DEFINE2(utimes, char __user *, filename, struct timeval __user *, utimes)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_utimes = {
7 .name = "utimes",
8 .num_args = 2,
9 .arg1name = "filename",
10 .arg1type = ARG_PATHNAME,
11 .arg2name = "utimes",
12 .arg2type = ARG_ADDRESS,