From: Petri Lehtinen Date: Sun, 5 Sep 2010 18:29:04 +0000 (+0300) Subject: On Windows, typedef int to int32_t X-Git-Tag: v2.0~46 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=jansson.git;a=commitdiff_plain;h=cbb3855d97b6fe0029a8c6e0034f0fbdb197b9b5 On Windows, typedef int to int32_t There's no inttypes.h or stdint.h in the stdlib on Windows. --- diff --git a/src/utf.h b/src/utf.h index 19ec6e5..e2d6c59 100644 --- a/src/utf.h +++ b/src/utf.h @@ -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 +#else +#ifdef _WIN32 +typedef int int32_t; +#endif #endif int utf8_encode(int codepoint, char *buffer, int *size);