diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index 55a0837..36f66af 100644 --- a/src/common.h +++ b/src/common.h @@ -26,12 +26,14 @@ +#ifndef t /** * Go to `fail` if a statement evaluates to non-zero. * * @param ... The statement. */ -#define t(...) do { if (__VA_ARGS__) goto fail; } while (0) +# define t(...) do { if (__VA_ARGS__) goto fail; } while (0) +#endif |