summaryrefslogtreecommitdiffstats
path: root/src/hdf5port.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hdf5port.h')
-rw-r--r--src/hdf5port.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/hdf5port.h b/src/hdf5port.h
index 5b7c848..3f3a5c2 100644
--- a/src/hdf5port.h
+++ b/src/hdf5port.h
@@ -24,10 +24,13 @@
* Generally useful macro definitions
**************************************************************************/
#ifndef MIN
-#define MIN(a,b) (((a)<(b)) ? (a) : (b))
+# define MIN(a,b) (((a)<(b)) ? (a) : (b))
#endif
#ifndef MAX
-#define MAX(a,b) (((a)>(b)) ? (a) : (b))
+# define MAX(a,b) (((a)>(b)) ? (a) : (b))
+#endif
+#ifndef MAX3
+# define MAX3(a,b,c) MAX(MAX(a,b),c)
#endif
/**************************************************************************