mapi: remove u_compiler.h
authorBrian Paul <brianp@vmware.com>
Wed, 4 Mar 2015 00:15:05 +0000 (17:15 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 4 Mar 2015 15:33:48 +0000 (08:33 -0700)
Just include c99_compat.h or util/macros.h where needed.

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mapi/Makefile.sources
src/mapi/entry.h
src/mapi/glapi/glapi.h
src/mapi/mapi.h
src/mapi/table.h
src/mapi/u_compiler.h [deleted file]
src/mapi/u_current.h
src/mapi/u_execmem.c
src/mapi/u_thread.h

index 41dbb24c839ee5c69b42837a13d666bde134ea6b..a1796626d5ea96ee3641d15ea4afdecc36f2dc70 100644 (file)
@@ -15,7 +15,6 @@
 #    this mode, compile MAPI_BRIDGE_FILES with MAPI_MODE_BRIDGE defined.
 
 MAPI_UTIL_FILES = \
-       u_compiler.h \
        u_current.c \
        u_current.h \
        u_execmem.c \
index dba1c06a3983aa44fb7c9af5f21d353a03ac2860..7c8137c0cab5b9d77f223b4430790fe7962e65fe 100644 (file)
@@ -28,7 +28,6 @@
 #ifndef _ENTRY_H_
 #define _ENTRY_H_
 
-#include "u_compiler.h"
 
 typedef void (*mapi_func)(void);
 
index e2fa9252f7ace0cbac5f8a8c6a32d583878fe46c..e3f76b47c1c1aeb2c629926e47ec24bed8cc3b41 100644 (file)
@@ -44,6 +44,7 @@
 #ifndef _GLAPI_H
 #define _GLAPI_H
 
+#include "util/macros.h"
 #include "u_thread.h"
 
 
index 2aa8d9fe0ef424bf450295784c61ef811bef5886..9adf8b5a37392a1ffbcc8d4189c7c84c656d5be9 100644 (file)
@@ -28,8 +28,6 @@
 #ifndef _MAPI_H_
 #define _MAPI_H_
 
-#include "u_compiler.h"
-
 #ifdef _WIN32
 #ifdef MAPI_DLL_EXPORTS
 #define MAPI_EXPORT __declspec(dllexport)
index 8180db9bc1046589fe912ad3b8a0b358e45ee0b6..e2d6ef03d76fe2bff5ff288efbb02cd9a05488ed 100644 (file)
@@ -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[];
 
 /**
diff --git a/src/mapi/u_compiler.h b/src/mapi/u_compiler.h
deleted file mode 100644 (file)
index cd80f68..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#ifndef _U_COMPILER_H_
-#define _U_COMPILER_H_
-
-#include "c99_compat.h" /* inline, __func__, etc. */
-#include "util/macros.h"
-
-#endif /* _U_COMPILER_H_ */
index 252e696c571e49fb83fc4b01fe542ce1adc24f7c..ea4f81723463cac1aae49f4fe691d73b2d45a3e6 100644 (file)
@@ -1,6 +1,10 @@
 #ifndef _U_CURRENT_H_
 #define _U_CURRENT_H_
 
+#include "c99_compat.h"
+#include "util/macros.h"
+
+
 #if defined(MAPI_MODE_UTIL) || defined(MAPI_MODE_GLAPI) || \
     defined(MAPI_MODE_BRIDGE)
 
@@ -24,8 +28,6 @@
 
 #else /* MAPI_MODE_UTIL || MAPI_MODE_GLAPI || MAPI_MODE_BRIDGE */
 
-#include "u_compiler.h"
-
 struct mapi_table;
 
 #ifdef GLX_USE_TLS
index ac1cae093d73da0a71ecff8b20cf3f82efd42187..ad6427b3e4314fccc364324a12d4e7694dff5a9d 100644 (file)
@@ -32,7 +32,7 @@
  */
 
 
-#include "u_compiler.h"
+#include "c99_compat.h"
 #include "u_thread.h"
 #include "u_execmem.h"
 
index 3cd07b5c4fade48ba05bdbbc7cd6ab47f4c64252..4dd95150d3fb88f1e753711b6b26a5810927c188 100644 (file)
@@ -44,7 +44,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "u_compiler.h"
+#include "c99_compat.h"
 
 #include "c11/threads.h"