diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2016-11-29 14:43:08 +0100 |
---|---|---|
committer | Markus Teich <markus.teich@stusta.mhn.de> | 2016-11-29 14:43:08 +0100 |
commit | df345104666d11a7e8c35254b4ed7a0187a256a2 (patch) | |
tree | 883d527bb3e5b2f9db1ecc3da8042ee51d4e1dc1 | |
parent | d775547d042f8c8f7e9a1c8b7b74303741a8557a (diff) |
coding style
-rw-r--r-- | test.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -27,7 +27,10 @@ int tests_run = 0; int ret = 0; -#define CHECK(cond, message) do { if (!(cond)) { fputs (message, stderr); fputc ('\n', stderr); return 0; } } while (0) +#define CHECK(cond, message) do { if (!(cond)) { fputs (message, stderr); fputc ( \ + '\n', \ + stderr); return 0; \ + } } while (0) #define RUN(test) do { if (!test ()) { ret = 1; } } while (0) #endif // ifndef _BRANDT_TEST_H |