diff options
Diffstat (limited to 'src/netcosm.h')
| -rw-r--r-- | src/netcosm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/netcosm.h b/src/netcosm.h index d0d4dea..5c308b5 100644 --- a/src/netcosm.h +++ b/src/netcosm.h @@ -96,6 +96,7 @@ #define ARRAYLEN(x) (sizeof(x)/sizeof(x[0])) #define MAX(a,b) ((a>b)?(a):(b)) +#define MIN(a,b) ((a<b)?(a):(b)) typedef int room_id; |