# HG changeset patch # User rubidium # Date 2008-04-04 19:10:45 # Node ID 513731970a50cbd6ffca7713110b4a37ec3f3d37 # Parent e25f4b1d2bbb8f7a07ca41b4cb67563752647b11 (svn r12571) -Fix: MorphOS misses INT16_MAX/INT16_MIN. diff --git a/src/stdafx.h b/src/stdafx.h --- 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