Przeglądaj źródła

include the configuration header in all public headers

Cédric Augonnet 16 lat temu
rodzic
commit
be96bbdccc

+ 2 - 0
include/starpu-data-filters.h

@@ -17,6 +17,8 @@
 #ifndef __STARPU_DATA_FILTERS_H__
 #define __STARPU_DATA_FILTERS_H__
 
+#include <starpu_config.h>
+
 struct starpu_data_state_t;
 
 typedef struct starpu_filter_t {

+ 1 - 0
include/starpu-data.h

@@ -17,6 +17,7 @@
 #ifndef __STARPU_DATA_H__
 #define __STARPU_DATA_H__
 
+#include <starpu_config.h>
 #include <starpu-data-interfaces.h>
 #include <starpu-data-filters.h>
 

+ 1 - 0
include/starpu-mutex.h

@@ -17,6 +17,7 @@
 #ifndef __STARPU_MUTEX_H__
 #define __STARPU_MUTEX_H__
 
+#include <starpu_config.h>
 #include <stdint.h>
 
 typedef struct starpu_mutex_t {

+ 1 - 0
include/starpu-util.h

@@ -21,6 +21,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
+#include <starpu_config.h>
 
 #define STARPU_MIN(a,b)	((a)<(b)?(a):(b))
 #define STARPU_MAX(a,b)	((a)<(b)?(b):(a))