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:
@ -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__ */
|
||||
|
Reference in New Issue
Block a user