Hi everyone,
I try to use this macro that used with gcc previously
#define ASSERT(condition, ...) { \
if (!(condition)) { \
printf("-F- ASSERT: "); \
printf(__VA_ARGS__); \
while (1); \
} \
}
But __VA_ARGS__ is unknown, what may be used instead?