On Windows, typedef int to int32_t

There's no inttypes.h or stdint.h in the stdlib on Windows.
This commit is contained in:
Petri Lehtinen
2010-09-05 21:29:04 +03:00
parent 3c4cf31a01
commit cbb3855d97

View File

@@ -17,6 +17,10 @@
no need to include stdint.h separately. If inttypes.h doesn't define
int32_t, it's defined in config.h. */
#include <inttypes.h>
#else
#ifdef _WIN32
typedef int int32_t;
#endif
#endif
int utf8_encode(int codepoint, char *buffer, int *size);