summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/runetype.h2
-rw-r--r--include/xlocale/_ctype.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/runetype.h b/include/runetype.h
index 972242a..6aad915 100644
--- a/include/runetype.h
+++ b/include/runetype.h
@@ -90,7 +90,7 @@ extern const _RuneLocale *_CurrentRuneLocale;
extern const _RuneLocale *__getCurrentRuneLocale(void);
#else
extern _Thread_local const _RuneLocale *_ThreadRuneLocale;
-static inline const _RuneLocale *__getCurrentRuneLocale(void)
+static __inline const _RuneLocale *__getCurrentRuneLocale(void)
{
if (_ThreadRuneLocale)
diff --git a/include/xlocale/_ctype.h b/include/xlocale/_ctype.h
index d0e5a47..31359b7 100644
--- a/include/xlocale/_ctype.h
+++ b/include/xlocale/_ctype.h
@@ -55,11 +55,11 @@ _RuneLocale *__runes_for_locale(locale_t, int*);
#ifndef _XLOCALE_INLINE
#if __GNUC__ && !__GNUC_STDC_INLINE__
/* GNU89 inline has nonstandard semantics. */
-#define _XLOCALE_INLINE extern inline
+#define _XLOCALE_INLINE extern __inline
#else
/* Hack to work around people who define inline away */
#ifdef inline
-#define _XLOCALE_INLINE __inline static
+#define _XLOCALE_INLINE static __inline
#else
/* Define with C++ / C99 compatible semantics */
#define _XLOCALE_INLINE inline
OpenPOWER on IntegriCloud