pxe: Fix recognition of keeppxe option
[syslinux.git] / com32 / lib / strtok.c
blobd2e37bb32227eee9af163fb03fd57c64dca0ffae
1 /*
2 * strtok.c
3 */
5 #include <string.h>
7 char *strtok(char *s, const char *delim)
9 static char *holder;
11 if (s)
12 holder = s;
14 return strsep(&holder, delim);