log

age author description
2016-03-14 Augie Fackler Add license information. default tip
2013-05-24 alexander chemeris Fix Issue 9: Surround (U)INTMAX_C with #ifndef's to prevent compiler warnings.
2013-05-24 alexander chemeris Fix Issue 10: Use system <stdint.h> for Visual Studio 2010 and later.
2013-05-24 alexander chemeris Fix license bug - the name of the product and the names of contributors must not be used for promotion.
2009-10-02 alexander chemeris [Issue 5] Change <stdint.h> to "stdint.h" to let compiler search for it in local directory.
2009-09-17 alexander chemeris [Issue 4] Fix incorrect int8_t behaviour if compiled with /J flag.
2009-05-13 ipse c99 Forgot about #ifdef __cplusplus guard around 'extern "C"', so inclusion to C files has been broken.
2009-05-11 ipse c99 [Issue 2] Always wrap <wcharюрЮ with external "C" {}.
2009-05-11 ipse c99 [Issue 3] Visual Studio 6 and Embedded Visual C++ 4 doesn't realize that, e.g. char has the same size as __int8 so we give up on __intX for them.
2008-07-17 ipse c99 Get rid of these compiler warnings when compiling for 32-bit:
2007-10-09 ipse c99 Better C99 conformance: macros for format specifiers should only be included in C++ implementations if __STDC_FORMAT_MACROS is defined before <inttypes.h> is included.
2007-07-03 ipse c99 Explicitly cast to appropriate type INT8_MIN, INT16_MIN, INT32_MIN and INT64_MIN constants.
2007-06-26 ipse c99 Better handling of (U)INTx_C macros - now they generate constants of exact width.
2007-03-29 ipse c99 Fix typo: Miscrosoft -> Microsoft.
2007-02-24 ipse c99 Remove <BaseTsd.h> include, as it is not present in Visual Studio 2005 Epxress Edition and required only for INT_PTR and UINT_PTR types.
2007-02-11 ipse c99 More correct fix for compilation under VS6.
2007-02-11 ipse c99 Bugfix: fix compiling under VS6, when stdint.h enclosed in 'extern "C" {}'.
2006-12-13 ipse c99 Make _inline modifier for imaxdiv default option. Use STATIC_IMAXDIV to make it static.
2006-12-13 ipse c99 Error message changed: VC6 supported from now.
2006-12-13 ipse c99 All (U)INT* types changed to (unsigned) __int*. This should make stdint.h compatible with VC6.
2006-12-13 ipse c99 Added INLINE_IMAXDIV define switch.
2006-12-13 ipse c99 Error message for non-MSC compiler changed.
2006-12-13 ipse c99 Added #ifndef for SIZE_MAX (it is defined in limits.h on MSVSC 8).
2006-12-12 ipse c99 License chaged to BSD-derivative.
2006-12-12 ipse c99 Added <wchar.h> include to avoid warnings when it is included after stdint.h.
2006-12-11 alexander chemeris BUGFIX: Definitions of INTPTR_MIN, INTPTR_MAX and UINTPTR_MAX for WIN32 and WIN64 was mixed up.
2006-12-11 alexander chemeris Rise #error if _MSC_VER is not defined. I.e. compiler other then Microsoft Visual C++ is used.
2006-12-11 alexander chemeris Added <limits.h> include to stdint.h.
2006-12-11 alexander chemeris Initial check in.