1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-17 03:29:09 +00:00

(svn r12909) [0.6] -Fix (r12866): missing #defines

This commit is contained in:
glx
2008-04-26 21:34:30 +00:00
parent 9e966f9cd0
commit ee7bad769f

View File

@@ -32,8 +32,10 @@
#include <stdint.h>
#endif
#else
#define INT64_MAX 9223372036854775807LL
#define INT64_MAX (9223372036854775807LL)
#define INT64_MIN (-INT64_MAX - 1)
#define INT16_MAX (32767)
#define INT16_MIN (-INT16_MAX - 1)
#endif
#include <cstdio>