summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCarmelo Amoroso <carmelo.amoroso@st.com>2008-09-09 12:06:58 +0000
committerCarmelo Amoroso <carmelo.amoroso@st.com>2008-09-09 12:06:58 +0000
commit54365d35cb77a69382a8d1bbeb9d3008077e572b (patch)
treea10606d1c808eadff5627f313d62b80b44e822a6 /include
parent96c028b213f14921bad01b05c0df5fceb5e5a743 (diff)
Hush compiler for extern inline warnings by using
__extern_inline macro, this also makes gcc 4.3 happy. (Taken from NPTL branch) Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/ctype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ctype.h b/include/ctype.h
index 78cff7daa..184b47b51 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -239,13 +239,13 @@ __exctype (_tolower);
# endif
# ifdef __USE_EXTERN_INLINES
-extern __inline int
+__extern_inline int
__NTH (tolower (int __c))
{
return __UCLIBC_CTYPE_IN_TO_DOMAIN(__c) ? (__UCLIBC_CTYPE_TOLOWER)[__c] : __c;
}
-extern __inline int
+__extern_inline int
__NTH (toupper (int __c))
{
return __UCLIBC_CTYPE_IN_TO_DOMAIN(__c) ? (__UCLIBC_CTYPE_TOUPPER)[__c] : __c;