No need to use USED() in arg.h for sbase

Tested on Linux and OpenBSD (with gcc and pcc).
This commit is contained in:
sin 2013-11-06 13:22:13 +00:00
parent 777f958426
commit c55948ba91
1 changed files with 1 additions and 6 deletions

7
arg.h
View File

@ -8,8 +8,6 @@
extern char *argv0;
#define USED(x) ((void)(x))
/* use main(int argc, char *argv[]) */
#define ARGBEGIN for (argv0 = *argv, argv++, argc--;\
argv[0] && argv[0][1]\
@ -32,10 +30,7 @@ extern char *argv0;
switch (_argc)
#define ARGEND }\
USED(_argc);\
}\
USED(argv);\
USED(argc);
}
#define ARGC() _argc