mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-07-12 08:59:36 +03:00
Add decl of MIN macro
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
@ -24,4 +24,8 @@
|
|||||||
|
|
||||||
# define STREQ(a,b) (strcmp(a,b) == 0)
|
# define STREQ(a,b) (strcmp(a,b) == 0)
|
||||||
|
|
||||||
|
# ifndef MIN
|
||||||
|
# define MIN(a,b) (((a) < (b)) ? (a) : (b))
|
||||||
|
# endif
|
||||||
|
|
||||||
#endif /* __LIBVIRT_UTILS_H__ */
|
#endif /* __LIBVIRT_UTILS_H__ */
|
||||||
|
Reference in New Issue
Block a user