Fix missing MAX for OpenSolaris

SVN revision: 40061
This commit is contained in:
Massimiliano Calamelli 2009-04-14 21:41:59 +00:00
parent 543f71218f
commit 829d452e55
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,10 @@
#include "e.h"
#include "e_mod_main.h"
#ifndef MAX
# define MAX(x, y) (((x) > (y)) ? (x) : (y))
#endif
/* TODO:
* - Track execution status
*/