diff options
author | Brian Paul <[email protected]> | 2015-03-03 17:15:05 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-03-04 08:33:48 -0700 |
commit | 8aa9191878a5608fc6e4e8c72bea1d25cd821dec (patch) | |
tree | a94f55090881e4fb312acea74c03e37966b5c79b /src/mapi/table.h | |
parent | 4ab713423ffbdb885910f0c0efcabb594e55d227 (diff) |
mapi: remove u_compiler.h
Just include c99_compat.h or util/macros.h where needed.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mapi/table.h')
-rw-r--r-- | src/mapi/table.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mapi/table.h b/src/mapi/table.h index 8180db9bc10..e2d6ef03d76 100644 --- a/src/mapi/table.h +++ b/src/mapi/table.h @@ -28,7 +28,7 @@ #ifndef _TABLE_H_ #define _TABLE_H_ -#include "u_compiler.h" +#include "c99_compat.h" #include "entry.h" #define MAPI_TMP_TABLE @@ -37,6 +37,8 @@ #define MAPI_TABLE_NUM_SLOTS (MAPI_TABLE_NUM_STATIC + MAPI_TABLE_NUM_DYNAMIC) #define MAPI_TABLE_SIZE (MAPI_TABLE_NUM_SLOTS * sizeof(mapi_func)) +struct mapi_table; + extern const mapi_func table_noop_array[]; /** |