diff options
author | Brian Paul <[email protected]> | 2015-03-03 09:08:22 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-03-04 08:33:48 -0700 |
commit | 41c87cc5666de7ec5cfdea2c035c671048c06ca5 (patch) | |
tree | 70d0d98c1841ffa7872e5946a72b306ddc5a75ba /src/mapi/u_current.h | |
parent | 5bebd7099ab22c6f1498cd928170561718d6ff36 (diff) |
mapi: replace INLINE with inline
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mapi/u_current.h')
-rw-r--r-- | src/mapi/u_current.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/u_current.h b/src/mapi/u_current.h index 72708d433de..252e696c571 100644 --- a/src/mapi/u_current.h +++ b/src/mapi/u_current.h @@ -63,7 +63,7 @@ u_current_set_context(const void *ptr); void * u_current_get_context_internal(void); -static INLINE const struct mapi_table * +static inline const struct mapi_table * u_current_get_table(void) { #ifdef GLX_USE_TLS @@ -74,7 +74,7 @@ u_current_get_table(void) #endif } -static INLINE const void * +static inline const void * u_current_get_context(void) { #ifdef GLX_USE_TLS |