Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/strtok.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1122 - (show annotations) (download)
Wed Aug 18 21:11:40 2010 UTC (13 years, 8 months ago) by niro
File MIME type: text/plain
File size: 146 byte(s)
-updated to klibc-1.5.19
1 /*
2 * strtok.c
3 */
4
5 #include <string.h>
6
7 char *strtok(char *s, const char *delim)
8 {
9 static char *holder;
10
11 return strtok_r(s, delim, &holder);
12 }