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.
This commit is contained in:
Peter Wemm 1997-09-25 03:06:19 +00:00
parent 39253d4c87
commit 985ae608d7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=29843
2 changed files with 6 additions and 6 deletions

View File

@ -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 */

View File

@ -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 */