diff options
Diffstat (limited to 'tap/tap.h')
-rw-r--r-- | tap/tap.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -47,7 +47,7 @@ | |||
47 | skip(n, fmt, ## __VA_ARGS__); \ | 47 | skip(n, fmt, ## __VA_ARGS__); \ |
48 | continue; \ | 48 | continue; \ |
49 | } | 49 | } |
50 | #elif __STDC_VERSION__ >= 199901L /* __GNUC__ */ | 50 | #else /*#elif __STDC_VERSION__ >= 199901L*/ /* __GNUC__ */ |
51 | # define ok(e, ...) ((e) ? \ | 51 | # define ok(e, ...) ((e) ? \ |
52 | _gen_result(1, __func__, __FILE__, __LINE__, \ | 52 | _gen_result(1, __func__, __FILE__, __LINE__, \ |
53 | __VA_ARGS__) : \ | 53 | __VA_ARGS__) : \ |
@@ -67,8 +67,8 @@ | |||
67 | skip(n, __VA_ARGS__); \ | 67 | skip(n, __VA_ARGS__); \ |
68 | continue; \ | 68 | continue; \ |
69 | } | 69 | } |
70 | #else /* __STDC_VERSION__ */ | 70 | /*#else *//* __STDC_VERSION__ */ |
71 | # error "Needs gcc or C99 compiler for variadic macros." | 71 | /*# error "Needs gcc or C99 compiler for variadic macros."*/ |
72 | #endif /* __STDC_VERSION__ */ | 72 | #endif /* __STDC_VERSION__ */ |
73 | 73 | ||
74 | # define skip_end } while(0); | 74 | # define skip_end } while(0); |