Move max() to util.h
[jansson.git] / src / util.h
1 #ifndef UTIL_H
2 #define UTIL_H
3
4 #define max(a, b)  ((a) > (b) ? (a) : (b))
5
6 #endif