diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-14 22:57:45 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-14 22:57:45 +0000 |
commit | f8703c6453b64fd74354a0851f6fb05795c31956 (patch) | |
tree | 252885111008043b1682496df58e46cbcd93d480 /libc/string/generic/strsep.c | |
parent | 032a3e76d290c776e26ae6c0a68e8b19885a68aa (diff) |
Move to use attribute_hidden
Diffstat (limited to 'libc/string/generic/strsep.c')
-rw-r--r-- | libc/string/generic/strsep.c | 4 |
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) |