aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/include/test.h2
-rw-r--r--tests/tests.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/tests/include/test.h b/tests/include/test.h
index ee7b4cf1..bf8c4f7b 100644
--- a/tests/include/test.h
+++ b/tests/include/test.h
@@ -35,4 +35,6 @@
*/
void *not_null(void);
+#define LOG_ME printf("%s is called\n", __func__)
+
#endif /* _TESTS_TEST_H */
diff --git a/tests/tests.c b/tests/tests.c
index 9dadddfe..329e798a 100644
--- a/tests/tests.c
+++ b/tests/tests.c
@@ -21,9 +21,6 @@
#include <string.h>
#include <stdint.h>
-/* redefinitions/wrapping */
-#define LOG_ME printf("%s is called\n", __func__)
-
void *not_null(void)
{
return (void *)NON_ZERO;