From 1a420b1fcb6a570fbe9fdad93f0084dd1503422f Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 6 Jan 2002 09:15:19 +0000 Subject: Use public interface, not a glibc style private one -Erik --- libc/string/strtok.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/string/strtok.c') diff --git a/libc/string/strtok.c b/libc/string/strtok.c index 9dc19a90b..dfe05d780 100644 --- a/libc/string/strtok.c +++ b/libc/string/strtok.c @@ -4,5 +4,5 @@ static char *save = 0; char *strtok(char *s, const char *delim) { - return __strtok_r(s, delim, &save); + return strtok_r(s, delim, &save); } -- cgit v1.2.3