avoid PARAMS redefinition.

This commit is contained in:
christos 2003-08-16 21:57:20 +00:00
parent 1cfd40eacc
commit 2e12e80a85
1 changed files with 2 additions and 0 deletions

View File

@ -146,7 +146,9 @@ So instead we use the macro below and test it against specific values. */
#define PTRCONST void *const #define PTRCONST void *const
#define LONG_DOUBLE long double #define LONG_DOUBLE long double
#ifndef PARAMS
#define PARAMS(ARGS) ARGS #define PARAMS(ARGS) ARGS
#endif
#define VPARAMS(ARGS) ARGS #define VPARAMS(ARGS) ARGS
#define VA_START(VA_LIST, VAR) va_start(VA_LIST, VAR) #define VA_START(VA_LIST, VAR) va_start(VA_LIST, VAR)