From 985ae608d7ad91626c77f3877087a18f82a1bdcb Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Thu, 25 Sep 1997 03:06:19 +0000 Subject: Bandaid for the build-breaking reference to _BSD_RUNE_T_. I'm not sure that this is right, but the old reference defaintely was not. --- include/_ctype.h | 6 +++--- include/ctype.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/_ctype.h b/include/_ctype.h index 093e766ff4a62..87f22ed3021e6 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 093e766ff4a62..87f22ed3021e6 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 */ -- cgit v1.3