aboutsummaryrefslogtreecommitdiff
blob: 6d2ae43216337947c9dfb709f58e39efbe486a6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#define CONFIG HAVE_FUTIMESAT
#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>"

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

#include "test-skel-0.c"