1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-25 15:39:09 +00:00

(svn r12571) -Fix: MorphOS misses INT16_MAX/INT16_MIN.

This commit is contained in:
rubidium
2008-04-04 19:10:45 +00:00
parent d1c0e57901
commit c5814a72ce

View File

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