src/lib/math.h
author Tero Marttila <terom@fixme.fi>
Thu, 25 Sep 2008 21:28:08 +0300
changeset 2 11757d6b43a6
permissions -rw-r--r--
more functionality for hello
#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 */