Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not define MIN() and MAX() in xbt/base.h to not polute our mpi.h
[simgrid.git] / src / xbt / mallocator.c
index ee6a253..77a6915 100644 (file)
@@ -13,6 +13,9 @@
 #include "xbt/asserts.h"
 #include "xbt/sysdep.h"
 
+#define MIN(a, b) ((a) < (b) ? (a) : (b))
+#define MAX(a, b) ((a) > (b) ? (a) : (b))
+
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_mallocator, xbt, "Mallocators");
 
 /** Implementation note on the mallocators: