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:
Luke Dunstan 2004-06-01 14:09:20 +00:00
parent a07c3e299c
commit cdb055db02
2 changed files with 9 additions and 0 deletions

View File

@ -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".

View File

@ -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 */