aboutsummaryrefslogtreecommitdiff
blob: 2c7b66c05107852d6499da5aa75d140eabdd212b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define FUNC link
#define SFUNC "link"
#define FUNC_STR "\"%s\", \"%s\""
#define FUNC_IMP oldpath, newpath
#define ARG_CNT 2
#define ARG_USE "<path>(old) <path>(new)"

#define process_args() \
	s = argv[i++]; \
	char *oldpath = s; \
	\
	s = argv[i++]; \
	char *newpath = s;

#include "test-skel-0.c"