Make json_error_t transparent again
[jansson.git] / src / utf.h
index d0ae6e9..e2d6c59 100644 (file)
--- a/src/utf.h
+++ b/src/utf.h
@@ -8,13 +8,19 @@
 #ifndef UTF_H
 #define UTF_H
 
+#ifdef HAVE_CONFIG_H
 #include <config.h>
+#endif
 
 #ifdef HAVE_INTTYPES_H
 /* inttypes.h includes stdint.h in a standard environment, so there's
 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);