summaryrefslogtreecommitdiff
path: root/ctype
diff options
context:
space:
mode:
Diffstat (limited to 'ctype')
-rw-r--r--ctype/ctype-extn.c3
-rw-r--r--ctype/ctype.h7
2 files changed, 5 insertions, 5 deletions
diff --git a/ctype/ctype-extn.c b/ctype/ctype-extn.c
index 764a5d34ef..4bab5a0298 100644
--- a/ctype/ctype-extn.c
+++ b/ctype/ctype-extn.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1997, 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1997, 1999, 2000, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -59,3 +59,4 @@ __isblank_l (int c, __locale_t l)
{
return __isctype_l (c, _ISblank, l);
}
+weak_alias (__isblank_l, isblank_l)
diff --git a/ctype/ctype.h b/ctype/ctype.h
index c17aaf171c..4a8ce30d04 100644
--- a/ctype/ctype.h
+++ b/ctype/ctype.h
@@ -216,8 +216,7 @@ toupper (int __c) __THROW
((locale)->__ctype_b[(int) (c)] & (unsigned short int) type)
# define __exctype_l(name) \
- extern int name (int, __locale_t) __THROW; \
- extern int __##name (int, __locale_t) __THROW
+ extern int name (int, __locale_t) __THROW
/* The following names are all functions:
int isCHARACTERISTIC(int c, locale_t *locale);
@@ -291,8 +290,8 @@ extern int toupper_l (int __c, __locale_t __l) __THROW;
# define isblank_l(c,l) __isblank_l ((c), (l))
# if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
-# define isascii_l(c,l) __isascii ((c), (l))
-# define toascii_l(c,l) __toascii ((c), (l))
+# define isascii_l(c,l) __isascii_l ((c), (l))
+# define toascii_l(c,l) __toascii_l ((c), (l))
# endif
# endif /* Not __NO_CTYPE. */