summaryrefslogtreecommitdiff
path: root/ctype/isctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'ctype/isctype.c')
-rw-r--r--ctype/isctype.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/ctype/isctype.c b/ctype/isctype.c
index 39a2f32be2..f0c9367522 100644
--- a/ctype/isctype.c
+++ b/ctype/isctype.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002-2015 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2016 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
@@ -20,9 +20,7 @@
#undef __isctype
int
-__isctype (ch, mask)
- int ch;
- int mask;
+__isctype (int ch, int mask)
{
return (((uint16_t *) _NL_CURRENT (LC_CTYPE, _NL_CTYPE_CLASS) + 128)
[(int) (ch)] & mask);