diff --git a/tests/include/test.h b/tests/include/test.h index ee7b4cf1c..bf8c4f7bd 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 9dadddfec..329e798a2 100644 --- a/tests/tests.c +++ b/tests/tests.c @@ -21,9 +21,6 @@ #include #include -/* redefinitions/wrapping */ -#define LOG_ME printf("%s is called\n", __func__) - void *not_null(void) { return (void *)NON_ZERO;