summaryrefslogtreecommitdiff
path: root/libc/string/generic/strsep.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/generic/strsep.c')
-rw-r--r--libc/string/generic/strsep.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/string/generic/strsep.c b/libc/string/generic/strsep.c
index 345c722bf..77670607b 100644
--- a/libc/string/generic/strsep.c
+++ b/libc/string/generic/strsep.c
@@ -20,7 +20,7 @@
#undef strsep
-char *strsep (char **stringp, const char *delim)
+char attribute_hidden *__strsep (char **stringp, const char *delim)
{
char *begin, *end;
@@ -63,3 +63,5 @@ char *strsep (char **stringp, const char *delim)
return begin;
}
+
+strong_alias(__strsep, strsep)