src/lib/math.h
author Tero Marttila <terom@fixme.fi>
Mon, 16 Mar 2009 23:33:38 +0200
changeset 64 83d53afa2551
parent 2 11757d6b43a6
permissions -rw-r--r--
implement evsql_destroy, although it's still not callable from any callbacks
#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 */