Commit b72d6d1d authored by Peter Dons Tychsen's avatar Peter Dons Tychsen Committed by Alexandre Julliard

msvcrt: Do not use casting in min/max constants.

parent 2384e497
...@@ -30,13 +30,13 @@ ...@@ -30,13 +30,13 @@
#define LONG_MAX 0x7fffffffL #define LONG_MAX 0x7fffffffL
#define ULONG_MAX 0xffffffffUL #define ULONG_MAX 0xffffffffUL
#define LLONG_MAX (((__int64)0x7fffffff << 32) | 0xffffffff) #define LLONG_MAX 0x7fffffffffffffffLL
#define LLONG_MIN (-LLONG_MAX-1) #define LLONG_MIN (-LLONG_MAX-1)
#define ULLONG_MAX (((unsigned __int64)0xffffffff << 32) | 0xffffffff) #define ULLONG_MAX 0xffffffffffffffffULL
#define _I64_MAX (((__int64)0x7fffffff << 32) | 0xffffffff) #define _I64_MAX 0x7fffffffffffffffLL
#define _I64_MIN (-_I64_MAX-1) #define _I64_MIN (-_I64_MAX-1)
#define _UI64_MAX (((unsigned __int64)0xffffffff << 32) | 0xffffffff) #define _UI64_MAX 0xffffffffffffffffULL
#define I64_MIN _I64_MIN #define I64_MIN _I64_MIN
#define I64_MAX _I64_MAX #define I64_MAX _I64_MAX
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment