diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1997-09-25 03:06:19 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1997-09-25 03:06:19 +0000 |
| commit | 985ae608d7ad91626c77f3877087a18f82a1bdcb (patch) | |
| tree | 52f17d4834d5046da22fa7726b1b4a7e05f3efb7 /include | |
| parent | 39253d4c8757172c02eb4fbece1b9989b059ad5d (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/_ctype.h | 6 | ||||
| -rw-r--r-- | include/ctype.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/_ctype.h b/include/_ctype.h index 093e766ff4a6..87f22ed3021e 100644 --- a/include/_ctype.h +++ b/include/_ctype.h @@ -168,10 +168,10 @@ __tolower(_BSD_CT_RUNE_T_ _c) } static __inline int -__maskrune(_BSD_RUNE_T_ c, unsigned long f) +__maskrune(_BSD_CT_RUNE_T_ _c, unsigned long f) { - return(((c & _CRMASK) - ? ___runetype(c) : _CurrentRuneLocale->runetype[c]) & f); + return(((_c & _CRMASK) + ? ___runetype(_c) : _CurrentRuneLocale->runetype[_c]) & f); } #else /* not using inlines */ diff --git a/include/ctype.h b/include/ctype.h index 093e766ff4a6..87f22ed3021e 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -168,10 +168,10 @@ __tolower(_BSD_CT_RUNE_T_ _c) } static __inline int -__maskrune(_BSD_RUNE_T_ c, unsigned long f) +__maskrune(_BSD_CT_RUNE_T_ _c, unsigned long f) { - return(((c & _CRMASK) - ? ___runetype(c) : _CurrentRuneLocale->runetype[c]) & f); + return(((_c & _CRMASK) + ? ___runetype(_c) : _CurrentRuneLocale->runetype[_c]) & f); } #else /* not using inlines */ |
