aboutsummaryrefslogtreecommitdiff
path: root/include/ctype.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1997-09-25 03:06:19 +0000
committerPeter Wemm <peter@FreeBSD.org>1997-09-25 03:06:19 +0000
commit985ae608d7ad91626c77f3877087a18f82a1bdcb (patch)
tree52f17d4834d5046da22fa7726b1b4a7e05f3efb7 /include/ctype.h
parent39253d4c8757172c02eb4fbece1b9989b059ad5d (diff)
downloadsrc-985ae608d7ad91626c77f3877087a18f82a1bdcb.tar.gz
src-985ae608d7ad91626c77f3877087a18f82a1bdcb.zip
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.
Notes
Notes: svn path=/head/; revision=29843
Diffstat (limited to 'include/ctype.h')
-rw-r--r--include/ctype.h6
1 files changed, 3 insertions, 3 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 */