diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-28 20:25:21 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-28 20:25:21 +0100 |
commit | 24d9c657dd1043af74046df01dbec60235d32c87 (patch) | |
tree | 97ee1174488a5be1343c8f7eb58acbe385b8185d /src/common.h | |
parent | ... (diff) | |
download | sat-24d9c657dd1043af74046df01dbec60235d32c87.tar.gz sat-24d9c657dd1043af74046df01dbec60235d32c87.tar.bz2 sat-24d9c657dd1043af74046df01dbec60235d32c87.tar.xz |
m + receive messages
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
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 |