summaryrefslogtreecommitdiff
path: root/libc/misc/ctype
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-16 18:29:52 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-16 18:29:52 +0000
commit15868f9c3d22fb51b38d7aafd88d95fb2193e734 (patch)
treefd940f5c633ec4a2d917b91654927c86d28c5f37 /libc/misc/ctype
parent4a15cc847eef004276ddaaae4dbb70dd6fb692e1 (diff)
s/weak_alias/strong_alias/, only what I knew as needed are kept. We will now see what libpthread will do ...
Diffstat (limited to 'libc/misc/ctype')
-rw-r--r--libc/misc/ctype/ctype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/ctype/ctype.c b/libc/misc/ctype/ctype.c
index 9a220ac63..c6195d89f 100644
--- a/libc/misc/ctype/ctype.c
+++ b/libc/misc/ctype/ctype.c
@@ -93,7 +93,7 @@ libc_hidden_proto(__ctype_b)
#ifdef __UCLIBC_DO_XLOCALE
#define CTYPE_NAME(X) __is ## X ## _l
#define ISCTYPE(C,F) __isctype_l( C, F, locale_arg)
-#define CTYPE_ALIAS(NAME) weak_alias( __is ## NAME ## _l , is ## NAME ## _l)
+#define CTYPE_ALIAS(NAME) strong_alias( __is ## NAME ## _l , is ## NAME ## _l)
#else
#define CTYPE_NAME(X) is ## X
#define ISCTYPE(C,F) __isctype( C, F )