Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/strsep.c')
-rw-r--r--newlib/libc/string/strsep.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/strsep.c b/newlib/libc/string/strsep.c
index e59782795..e1262ac37 100644
--- a/newlib/libc/string/strsep.c
+++ b/newlib/libc/string/strsep.c
@@ -11,8 +11,7 @@
extern char *__strtok_r (char *, const char *, char **, int);
char *
-_DEFUN (strsep, (source_ptr, delim),
- register char **source_ptr,
+strsep (register char **source_ptr,
register const char *delim)
{
return __strtok_r (*source_ptr, delim, source_ptr, 0);