fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / string / strsep.c
blobd3d0ad0a96f29be7478a88d23c99dc08d3abbb29
1 /* BSD strsep function */
3 /* Copyright 2002, Red Hat Inc. */
5 /* undef STRICT_ANSI so that strsep prototype will be defined */
6 #undef __STRICT_ANSI__
7 #include <string.h>
8 #include <_ansi.h>
9 #include <reent.h>
11 extern char *__strtok_r (char *, const char *, char **, int);
13 char *
14 _DEFUN (strsep, (source_ptr, delim),
15 register char **source_ptr _AND
16 register const char *delim)
18 return __strtok_r (*source_ptr, delim, source_ptr, 0);