summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-09-25 03:06:19 +0000
committerpeter <peter@FreeBSD.org>1997-09-25 03:06:19 +0000
commitd84a9433e41f5f784b191848654fcad58b495f67 (patch)
treef4d7a4b77d368b988492f1ce2b35358d3e3a4360 /include
parent15c11737ffd6ac206a82dce52f24647402576af6 (diff)
downloadFreeBSD-src-d84a9433e41f5f784b191848654fcad58b495f67.zip
FreeBSD-src-d84a9433e41f5f784b191848654fcad58b495f67.tar.gz
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.
Diffstat (limited to 'include')
-rw-r--r--include/_ctype.h6
-rw-r--r--include/ctype.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/include/_ctype.h b/include/_ctype.h
index 093e766..87f22ed 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 093e766..87f22ed 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 */
OpenPOWER on IntegriCloud