From fe68563b9a070fedf117c8738652587945427bb3 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 3 Jan 2006 14:46:56 +0000 Subject: Use strong_alias everywhere instead of .global/.set. Correct some cases where the non-hidden version was used. --- libc/string/generic/strspn.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libc/string/generic/strspn.c') diff --git a/libc/string/generic/strspn.c b/libc/string/generic/strspn.c index 1923f8afd..129c58742 100644 --- a/libc/string/generic/strspn.c +++ b/libc/string/generic/strspn.c @@ -18,8 +18,6 @@ #include -#undef strspn - /* Return the length of the maximum initial segment of S which contains only characters in ACCEPT. */ size_t attribute_hidden __strspn (const char *s, const char *accept) @@ -42,4 +40,4 @@ size_t attribute_hidden __strspn (const char *s, const char *accept) return count; } -strong_alias(__strspn, strspn) +strong_alias(__strspn,strspn) -- cgit v1.2.3