1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2025-07-10 00:59:41 +03:00

Add decl of MIN macro

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrange
2013-11-12 18:21:48 +00:00
parent e169d3d8cf
commit 5b5437349a

View File

@ -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__ */