diff options
author | ache <ache@FreeBSD.org> | 1997-09-25 23:10:38 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-09-25 23:10:38 +0000 |
commit | 9021e21701a5ca6889ebea04001c1dfc47a8dae9 (patch) | |
tree | c176871ec2018e1407cad5c3399c0cbaf46f9fdd /lib/libc | |
parent | a411894a1778d2bf706fc05639ef95c82888191a (diff) | |
download | FreeBSD-src-9021e21701a5ca6889ebea04001c1dfc47a8dae9.zip FreeBSD-src-9021e21701a5ca6889ebea04001c1dfc47a8dae9.tar.gz |
__maskrune --> __istype
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/locale/isctype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/locale/isctype.c b/lib/libc/locale/isctype.c index 8748998..5f5404b 100644 --- a/lib/libc/locale/isctype.c +++ b/lib/libc/locale/isctype.c @@ -178,5 +178,5 @@ int digittoint(c) int c; { - return (__maskrune((c), 0xFF)); + return (__istype((c), 0xFF)); } |