aboutsummaryrefslogtreecommitdiff
path: root/src/string/memrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/memrchr.c')
-rw-r--r--src/string/memrchr.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/string/memrchr.c b/src/string/memrchr.c
index e51748b8..944f6ee8 100644
--- a/src/string/memrchr.c
+++ b/src/string/memrchr.c
@@ -9,3 +9,11 @@ void *__memrchr(const void *m, int c, size_t n)
}
weak_alias(__memrchr, memrchr);
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif