diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-08 15:02:02 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-08 15:02:02 +0000 |
commit | ceca97e8eaee5878711eb2c2047859e4ced79be0 (patch) | |
tree | a0ddf9992eb6c35e4ebfda88e80dd8de0945c6c5 /libc/string/wcscmp.c | |
parent | dcfc19695c52d291df929f730d9ed38abc8fc2a5 (diff) |
Use hidden_strong_alias for alias(__x,__y), do not use recursive aliases
Diffstat (limited to 'libc/string/wcscmp.c')
-rw-r--r-- | libc/string/wcscmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/string/wcscmp.c b/libc/string/wcscmp.c index 505148140..b2f2916bc 100644 --- a/libc/string/wcscmp.c +++ b/libc/string/wcscmp.c @@ -13,8 +13,8 @@ strong_alias(__wcscmp, wcscmp) #ifdef __LOCALE_C_ONLY -weak_alias(__wcscmp, __wcscoll) -weak_alias(__wcscmp, wcscoll) +hidden_strong_alias(__wcscmp, __wcscoll) +strong_alias(__wcscmp, wcscoll) #endif #undef L_strcmp |