aboutsummaryrefslogtreecommitdiffstats
path: root/rawmemrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'rawmemrchr.c')
-rw-r--r--rawmemrchr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/rawmemrchr.c b/rawmemrchr.c
index 3985840..eb685cf 100644
--- a/rawmemrchr.c
+++ b/rawmemrchr.c
@@ -1,5 +1,6 @@
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
+#ifndef TEST
void *
@@ -11,8 +12,8 @@ libsimple_rawmemrchr(const void *s_, int c, size_t n)
}
-#ifdef TEST
-#include <assert.h>
+#else
+#include "test.h"
int
main(void)