summaryrefslogtreecommitdiff
path: root/test/string/tst-strtok.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/string/tst-strtok.c')
-rw-r--r--test/string/tst-strtok.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/string/tst-strtok.c b/test/string/tst-strtok.c
deleted file mode 100644
index 7e34aeefa..000000000
--- a/test/string/tst-strtok.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Testcase for strtok reported by Andrew Church <achurch@achurch.org>. */
-#include <stdio.h>
-#include <string.h>
-
-int
-main (void)
-{
- char buf[1] = { 0 };
- int result = 0;
-
- if (strtok (buf, " ") != NULL)
- {
- puts ("first strtok call did not return NULL");
- result = 1;
- }
- else if (strtok (NULL, " ") != NULL)
- {
- puts ("second strtok call did not return NULL");
- result = 1;
- }
-
- return result;
-}