stdint only if not specifying types directly

git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1396 59561ff5-6e30-0410-9f3c-9617f08c8826
This commit is contained in:
vlm 2007-11-13 05:09:35 +00:00
parent 55c3274824
commit bbccfff63a
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,6 @@
#ifdef WIN32
#include <malloc.h>
#include <stdint.h>
#define snprintf _snprintf
#define vsnprintf _vsnprintf
@ -52,6 +51,8 @@ typedef unsigned int uint32_t;
#define finite _finite
#define copysign _copysign
#define ilogb _logb
#else /* !_MSC_VER */
#include <stdint.h>
#endif /* _MSC_VER */
#else /* !WIN32 */