diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-01 19:52:55 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-01 19:52:55 -0500 |
commit | 47fbd9c2bd6c59b46fcf4c93851192cbb9240ebb (patch) | |
tree | e204d4ef83c542167c9510006ba9490c79cc4caa /stdbool.c | |
parent | 3819846f8ad95b40d98d0a544fd16533590e30cb (diff) |
move test variables into function body
Diffstat (limited to 'stdbool.c')
-rw-r--r-- | stdbool.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,10 +2,10 @@ #include <stdbool.h> #include "test.h" -static bool b; - void test_stdbool_h(void) { + bool b; + testing_header("stdbool.h"); test_true(true); |