From 167217bec15c9c7aa70ba2a3dc9c689b3cd91872 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Mon, 14 May 2001 14:19:32 +0000 Subject: import new version of dietlibc --- mdk-stage1/dietlibc/lib/strtok.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mdk-stage1/dietlibc/lib/strtok.c') diff --git a/mdk-stage1/dietlibc/lib/strtok.c b/mdk-stage1/dietlibc/lib/strtok.c index 525665e59..86337da7b 100644 --- a/mdk-stage1/dietlibc/lib/strtok.c +++ b/mdk-stage1/dietlibc/lib/strtok.c @@ -1,5 +1,7 @@ char *strtok_r(char *s, const char *delim, char **ptrptr); + static char *strtok_pos; + char *strtok(char *s, const char *delim) { return strtok_r(s,delim,&strtok_pos); -- cgit v1.2.1