#Define MAX for systems that do not have it (Solaris). Fixes bug #186.

SVN revision: 31615
This commit is contained in:
Christopher Michael 2007-09-04 16:48:11 +00:00
parent f211a9b33d
commit 485417d47a
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@
*/ */
#include "e.h" #include "e.h"
#ifndef MAX
# define MAX(x, y) (((x) > (y)) ? (x) : (y))
#endif
#define INITS #define INITS
#define ACT_GO(name) \ #define ACT_GO(name) \
{ \ { \