From c5c1d7396035111fcd62dd92595bbca11895e527 Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Tue, 13 Mar 2012 18:53:28 +0000 Subject: [PATCH] And remove the duplicate inlines... Approved by: dim (mentor) --- include/xlocale/_ctype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/xlocale/_ctype.h b/include/xlocale/_ctype.h index 9cb3385ce211..481fe33f31d2 100644 --- a/include/xlocale/_ctype.h +++ b/include/xlocale/_ctype.h @@ -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));