And remove the duplicate inlines...

Approved by:	dim (mentor)
This commit is contained in:
David Chisnall 2012-03-13 18:53:28 +00:00
parent 9fa42222e8
commit c5c1d73960
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232931

View File

@ -70,7 +70,7 @@ _RuneLocale *__runes_for_locale(locale_t, int*);
#ifdef _XLOCALE_WCTYPES
_XLOCALE_INLINE int
__maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
_XLOCALE_INLINE __inline int
_XLOCALE_INLINE int
__istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
_XLOCALE_INLINE int
@ -82,7 +82,7 @@ __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc)
runes->__runetype[__c] & __f;
}
_XLOCALE_INLINE __inline int
_XLOCALE_INLINE int
__istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc)
{
return (!!__maskrune_l(__c, __f, __loc));