aboutsummaryrefslogtreecommitdiff
blob: a341e202c49ac09a4da66cddf22e9c6f096af6c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#define FUNC futimesat
#define SFUNC "futimesat"
#define FUNC_STR "%i, \"%s\", %p"
#define FUNC_IMP dirfd, file, times
#define ARG_CNT 3
#define ARG_USE "<dirfd> <file> <times:=NULL>"

#define process_args() \
	s = argv[i++]; \
	int dirfd = atoi(s); \
	\
	s = argv[i++]; \
	char *file = s; \
	\
	s = argv[i++]; \
	const struct timeval *times = NULL;

#include "test-skel-0.c"