config/msvc.h: inttypes.h and stdbool.h introduced in MSVS 2013

<inttypes.h> and <stdbool.h> were introduced in MS Visual Studio 2013,
not 2015.  See:

https://blogs.msdn.microsoft.com/vcblog/2013/07/19/c99-library-support-in-visual-studio-2013/

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
H. Peter Anvin 2016-10-04 17:50:53 -07:00
parent 276785a8ff
commit 2024ae60d6

View file

@ -58,7 +58,7 @@
#define HAVE_FCNTL_H 1
/* Define to 1 if you have the <inttypes.h> header file. */
#if _MSC_VER >= 1900
#if _MSC_VER >= 1800
# define HAVE_INTTYPES_H 1
#endif
@ -120,7 +120,7 @@
#define stat _stati64
/* Define to 1 if stdbool.h conforms to C99. */
#if _MSC_VER >= 1900
#if _MSC_VER >= 1800
# define HAVE_STDBOOL_H 1
#endif