summaryrefslogtreecommitdiff
path: root/libc/string/strtok.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strtok.c')
-rw-r--r--libc/string/strtok.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/string/strtok.c b/libc/string/strtok.c
deleted file mode 100644
index dfe05d780..000000000
--- a/libc/string/strtok.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <string.h>
-
-static char *save = 0;
-
-char *strtok(char *s, const char *delim)
-{
- return strtok_r(s, delim, &save);
-}