From: Petri Lehtinen Date: Thu, 18 Mar 2010 05:18:43 +0000 (+0200) Subject: Don't include stdint.h anywhere X-Git-Tag: v1.2.1~8 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=jansson.git;a=commitdiff_plain;h=a2a9107600da8ed0302e414fef8b9e70233e71ca Don't include stdint.h anywhere This should have fixed by commit 28682322, but there was one #include left in utf.c. It now includes utf.h instead of stdint.h. --- diff --git a/src/utf.c b/src/utf.c index 9f4cb93..92484d0 100644 --- a/src/utf.c +++ b/src/utf.c @@ -6,7 +6,7 @@ */ #include -#include +#include "utf.h" int utf8_encode(int32_t codepoint, char *buffer, int *size) {