From: Andreas Schneider <[email protected]>
Signed-off-by: Andreas Schneider <[email protected]>
(cherry picked from commit de35212789d11086621e176a11399de0d75ab3a6)
---
include/libssh/priv.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/libssh/priv.h b/include/libssh/priv.h
index 5a74915e..c3373c00 100644
--- a/include/libssh/priv.h
+++ b/include/libssh/priv.h
@@ -263,6 +263,10 @@ int match_hostname(const char *host, const char *pattern,
unsigned int len);
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
+#ifndef MAX
+#define MAX(a,b) ((a) > (b) ? (a) : (b))
+#endif
+
/** Free memory space */
#define SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0)
--
2.15.1