merge unlink variants
[trinity.git] / syscalls / gettimeofday.c
blob060e3360588a96dfa049f207c687797e4ee9e64e
1 /*
2 * SYSCALL_DEFINE2(gettimeofday, struct timeval __user *, tv, struct timezone __user *, tz)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_gettimeofday = {
7 .name = "gettimeofday",
8 .num_args = 2,
9 .arg1name = "tv",
10 .arg1type = ARG_ADDRESS,
11 .arg2name = "tz",
12 .arg2type = ARG_ADDRESS,