src/lib/math.h
author Tero Marttila <terom@fixme.fi>
Wed, 22 Oct 2008 21:07:17 +0300
changeset 40 03017f5f0087
parent 2 11757d6b43a6
permissions -rw-r--r--
add MODE param to makefile, fix INFO_DISABLED, add some constraints to the .sql, fix some -err's, EVSQL_PQ_ARBITRARY_TYPE_OID, and make read/write transactionless
2
11757d6b43a6 more functionality for hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     1
#ifndef LIB_MATH_H
11757d6b43a6 more functionality for hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     2
#define LIB_MATH_H
11757d6b43a6 more functionality for hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     3
11757d6b43a6 more functionality for hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     4
#define MIN(a, b) ((a) < (b) ? (a) : (b))
11757d6b43a6 more functionality for hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     5
#define MAX(a, b) ((a) > (b) ? (a) : (b))
11757d6b43a6 more functionality for hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     6
11757d6b43a6 more functionality for hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     7
#endif /* LIB_MATH_H */