include/msvcrt: Ensure integer limits are given the correct type.

Signed-off-by: Iván Matellanes <matellanesivan@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Iván Matellanes 2016-08-10 15:56:06 +01:00 committed by Alexandre Julliard
parent 882980c17a
commit 4f71f42910
1 changed files with 3 additions and 3 deletions

View File

@ -22,11 +22,11 @@
#define SHRT_MAX 0x7fff
#define USHRT_MAX 0xffff
#define INT_MIN (-0x80000000)
#define INT_MIN (-0x7fffffff - 1)
#define INT_MAX 0x7fffffff
#define UINT_MAX 0xffffffff
#define UINT_MAX 0xffffffffU
#define LONG_MIN (-0x80000000L)
#define LONG_MIN (-0x7fffffffL - 1L)
#define LONG_MAX 0x7fffffffL
#define ULONG_MAX 0xffffffffUL