summaryrefslogtreecommitdiff
path: root/stdbool.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-01 19:52:55 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-01 19:52:55 -0500
commit47fbd9c2bd6c59b46fcf4c93851192cbb9240ebb (patch)
treee204d4ef83c542167c9510006ba9490c79cc4caa /stdbool.c
parent3819846f8ad95b40d98d0a544fd16533590e30cb (diff)
move test variables into function body
Diffstat (limited to 'stdbool.c')
-rw-r--r--stdbool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdbool.c b/stdbool.c
index bb43b55..37a859e 100644
--- a/stdbool.c
+++ b/stdbool.c
@@ -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);