aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
blob: 66066c52c8b625f42fe55a3f2e2ea4b7fb41c22a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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