summaryrefslogtreecommitdiff
path: root/ctype/ctype_l.c
diff options
context:
space:
mode:
Diffstat (limited to 'ctype/ctype_l.c')
-rw-r--r--ctype/ctype_l.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ctype/ctype_l.c b/ctype/ctype_l.c
index ad5b99420e..e5da90e95e 100644
--- a/ctype/ctype_l.c
+++ b/ctype/ctype_l.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2018 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
@@ -21,7 +21,7 @@
/* Provide real-function versions of all the ctype macros. */
#define func(name, type) \
- int __##name (int c, __locale_t l) { return __isctype_l (c, type, l); } \
+ int __##name (int c, locale_t l) { return __isctype_l (c, type, l); } \
weak_alias (__##name, name)
func (isalnum_l, _ISalnum)
@@ -37,14 +37,14 @@ func (isupper_l, _ISupper)
func (isxdigit_l, _ISxdigit)
int
-(__tolower_l) (int c, __locale_t l)
+(__tolower_l) (int c, locale_t l)
{
return l->__ctype_tolower[c];
}
weak_alias (__tolower_l, tolower_l)
int
-(__toupper_l) (int c, __locale_t l)
+(__toupper_l) (int c, locale_t l)
{
return l->__ctype_toupper[c];
}