src/lib/math.h
author Tero Marttila <terom@fixme.fi>
Sun, 12 Oct 2008 20:10:47 +0300
changeset 25 99a41f48e29b
parent 2 11757d6b43a6
permissions -rw-r--r--
evsql transactions, it compiles...
#ifndef LIB_MATH_H
#define LIB_MATH_H

#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))

#endif /* LIB_MATH_H */