Use the real stdint.h in Visual Studio environments that include it

This commit is contained in:
libertyernie 2015-08-12 18:08:40 -05:00
parent 8ce5de5835
commit 87c50104b4

View File

@ -7,7 +7,11 @@
#define _STREAMTYPES_H
#ifdef _MSC_VER
#if (_MSC_VER >= 1600)
#include <stdint.h>
#else
#include <pstdint.h>
#endif
#define inline _inline
#define strcasecmp _stricmp
#define snprintf _snprintf