From c5814a72ced79ec7650e11919d7078094e6ab209 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 4 Apr 2008 19:10:45 +0000 Subject: (svn r12571) -Fix: MorphOS misses INT16_MAX/INT16_MIN. --- src/stdafx.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/stdafx.h b/src/stdafx.h index 278b7556d..80b2592ad 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -32,8 +32,12 @@ #include #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 -- cgit v1.2.3-54-g00ecf