aboutsummaryrefslogtreecommitdiff
path: root/string/tst-strtok.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/tst-strtok.c')
-rw-r--r--string/tst-strtok.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/string/tst-strtok.c b/string/tst-strtok.c
deleted file mode 100644
index 628e106a46..0000000000
--- a/string/tst-strtok.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Testcase for strtok reported by Andrew Church <achurch@achurch.org>. */
-#include <stdio.h>
-#include <string.h>
-
-int
-do_test (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;
-}
-
-#include <support/test-driver.c>