summaryrefslogtreecommitdiff
path: root/ctype/ctype-extn.c
diff options
context:
space:
mode:
Diffstat (limited to 'ctype/ctype-extn.c')
-rw-r--r--ctype/ctype-extn.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/ctype/ctype-extn.c b/ctype/ctype-extn.c
index dcc9874894..0073c1a036 100644
--- a/ctype/ctype-extn.c
+++ b/ctype/ctype-extn.c
@@ -23,14 +23,7 @@
#define __ctype_toupper \
((int32_t *) _NL_CURRENT (LC_CTYPE, _NL_CTYPE_TOUPPER) + 128)
-/* Real function versions of the non-ANSI ctype functions. isblank is
- now in ISO C99 but we leave it here. */
-
-int
-isblank (int c)
-{
- return __isctype (c, _ISblank);
-}
+/* Real function versions of the non-ANSI ctype functions. */
int
_tolower (int c)
@@ -56,11 +49,3 @@ isascii (int c)
return __isascii (c);
}
weak_alias (isascii, __isascii_l)
-
-
-int
-__isblank_l (int c, __locale_t l)
-{
- return __isctype_l (c, _ISblank, l);
-}
-weak_alias (__isblank_l, isblank_l)