From: "Daniel P. Berrange" <[email protected]> Signed-off-by: Daniel P. Berrange <[email protected]> --- libvirt-utils.h | 4 ++++ 1 file changed, 4 insertions(+)
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__ */ -- 1.8.3.1 -- libvir-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/libvir-list
