aboutsummaryrefslogtreecommitdiff
blob: 6a5100714082652b27aac7c0e511d5a4f6503bcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define FUNC utime
#define SFUNC "utime"
#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 utimbuf *times = NULL;

#include "test-skel-0.c"