diff options
Diffstat (limited to 'src/json/util.h')
-rw-r--r-- | src/json/util.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/json/util.h b/src/json/util.h new file mode 100644 index 000000000..66066c52c --- /dev/null +++ b/src/json/util.h @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2009 Petri Lehtinen <petri@digip.org> + * + * Jansson is free software; you can redistribute it and/or modify + * it under the terms of the MIT license. See LICENSE for details. + */ + +#ifndef UTIL_H +#define UTIL_H + +#define max(a, b) ((a) > (b) ? (a) : (b)) + +#endif |