Merge branch '1.1'
[jansson.git] / src / util.h
1 /*
2  * Copyright (c) 2009 Petri Lehtinen <petri@digip.org>
3  *
4  * Jansson is free software; you can redistribute it and/or modify
5  * it under the terms of the MIT license. See LICENSE for details.
6  */
7
8 #ifndef UTIL_H
9 #define UTIL_H
10
11 #define max(a, b)  ((a) > (b) ? (a) : (b))
12
13 #endif