aboutsummaryrefslogtreecommitdiff
blob: 07a03dc7ad0818b7bdc1b5d104798a372b71ec77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define CONFIG HAVE_LUTIMES
#define FUNC lutimes
#define SFUNC "lutimes"
#define FUNC_STR "\"%s\", %p"
#define FUNC_IMP file, times
#define ARG_CNT 2
#define ARG_USE "<file> <times:=NULL>"

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

#include "test-skel-0.c"