diff options
Diffstat (limited to 'libc/string/generic/strsep.c')
-rw-r--r-- | libc/string/generic/strsep.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/string/generic/strsep.c b/libc/string/generic/strsep.c index 9515fa193..762b07ff9 100644 --- a/libc/string/generic/strsep.c +++ b/libc/string/generic/strsep.c @@ -20,8 +20,6 @@ #include <string.h> -#undef strsep - char attribute_hidden *__strsep (char **stringp, const char *delim) { char *begin, *end; @@ -66,4 +64,4 @@ char attribute_hidden *__strsep (char **stringp, const char *delim) return begin; } -strong_alias(__strsep, strsep) +strong_alias(__strsep,strsep) |