summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-09-27 04:34:35 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-09-27 04:34:35 +0000
commit46dba712f1801bc970168ae9badaaea0b7c68c2c (patch)
treefae36a7fb02896b12faed751690ccc07e21cdc90 /lib/libc
parent659ad3a4a1ea408f1f6c24f37ffb95eb6499ef27 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/locale/isctype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/locale/isctype.c b/lib/libc/locale/isctype.c
index 5f5404bf6365..4d51813dbe2c 100644
--- a/lib/libc/locale/isctype.c
+++ b/lib/libc/locale/isctype.c
@@ -50,7 +50,7 @@ int
isalnum(c)
int c;
{
- return (__istype((c), (_A|_D)));
+ return (__istype((c), _A|_D));
}
#undef isalpha
@@ -178,5 +178,5 @@ int
digittoint(c)
int c;
{
- return (__istype((c), 0xFF));
+ return (__maskrune((c), 0xFF));
}