Change behaviour of stream-intersection with multiple traces
[babeltrace.git] / include / babeltrace / babeltrace-internal.h
index 64d562b789c6fb8d77d0203989ee45fb5c076b83..2f15a681a8db5ccdc550e9f8ba37d13474972295 100644 (file)
@@ -151,6 +151,14 @@ extern int babeltrace_verbose, babeltrace_debug;
 # endif
 #endif
 
+#ifndef min
+#define min(a, b)      (((a) < (b)) ? (a) : (b))
+#endif
+
+#ifndef max
+#define max(a, b)      (((a) > (b)) ? (a) : (b))
+#endif
+
 /*
  * BT_HIDDEN: set the hidden attribute for internal functions
  */
This page took 0.022904 seconds and 4 git commands to generate.