2004-04-24 Luke Dunstan <infidel@users.sourceforge.net>
* include/limits.h (_I64_MIN, _I64_MAX, _UI64_MAX): Add defines.
This commit is contained in:
parent
a07c3e299c
commit
cdb055db02
|
@ -1,3 +1,7 @@
|
|||
2004-04-24 Luke Dunstan <infidel@users.sourceforge.net>
|
||||
|
||||
* include/limits.h (_I64_MIN, _I64_MAX, _UI64_MAX): Add defines.
|
||||
|
||||
2004-04-22 Earnie Boyd <earnie@users.sf.net>
|
||||
|
||||
* DISCLAIMER: Add words about "free to use".
|
||||
|
|
|
@ -109,6 +109,11 @@
|
|||
#define LLONG_MIN LONG_LONG_MIN
|
||||
#define ULLONG_MAX ULONG_LONG_MAX
|
||||
|
||||
/* MSVC compatibility */
|
||||
#define _I64_MIN LONG_LONG_MIN
|
||||
#define _I64_MAX LONG_LONG_MAX
|
||||
#define _UI64_MAX ULONG_LONG_MAX
|
||||
|
||||
#endif /* Not Strict ANSI and GNU C compiler */
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue