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/table.h | |
parent | 5bebd7099ab22c6f1498cd928170561718d6ff36 (diff) |
mapi: replace INLINE with inline
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mapi/table.h')
-rw-r--r-- | src/mapi/table.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mapi/table.h b/src/mapi/table.h index df59aed4ffd..8180db9bc10 100644 --- a/src/mapi/table.h +++ b/src/mapi/table.h @@ -42,7 +42,7 @@ extern const mapi_func table_noop_array[]; /** * Get the no-op dispatch table. */ -static INLINE const struct mapi_table * +static inline const struct mapi_table * table_get_noop(void) { return (const struct mapi_table *) table_noop_array; @@ -51,7 +51,7 @@ table_get_noop(void) /** * Set the function of a slot. */ -static INLINE void +static inline void table_set_func(struct mapi_table *tbl, int slot, mapi_func func) { mapi_func *funcs = (mapi_func *) tbl; @@ -61,7 +61,7 @@ table_set_func(struct mapi_table *tbl, int slot, mapi_func func) /** * Return the function of a slot. */ -static INLINE mapi_func +static inline mapi_func table_get_func(const struct mapi_table *tbl, int slot) { const mapi_func *funcs = (const mapi_func *) tbl; |