aboutsummaryrefslogtreecommitdiff
blob: f5e4f88f488ca57ff8996baa41f7fa899c1e0364 (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 "<oldpath> <newpath>"

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

#include "test-skel-0.c"