From a2a9107600da8ed0302e414fef8b9e70233e71ca Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Thu, 18 Mar 2010 07:18:43 +0200 Subject: [PATCH] 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. --- src/utf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.1.4