src/lib/math.h
author Tero Marttila <terom@fixme.fi>
Tue, 21 Oct 2008 21:54:20 +0300
changeset 37 c3880f3b4de8
parent 2 11757d6b43a6
permissions -rw-r--r--
update fuse_db.sql, just use dbfs_unlink for rmdir (no special handling)
#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 */