summaryrefslogtreecommitdiffstats
path: root/libvirt-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'libvirt-utils.h')
-rw-r--r--libvirt-utils.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libvirt-utils.h b/libvirt-utils.h
index bec7346..aed64e6 100644
--- a/libvirt-utils.h
+++ b/libvirt-utils.h
@@ -24,4 +24,8 @@
# define STREQ(a,b) (strcmp(a,b) == 0)
+# ifndef MIN
+# define MIN(a,b) (((a) < (b)) ? (a) : (b))
+# endif
+
#endif /* __LIBVIRT_UTILS_H__ */