Don't include stdint.h anywhere
authorPetri Lehtinen <petri@digip.org>
Thu, 18 Mar 2010 05:18:43 +0000 (07:18 +0200)
committerPetri Lehtinen <petri@digip.org>
Thu, 18 Mar 2010 05:22:43 +0000 (07:22 +0200)
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

index 9f4cb93..92484d0 100644 (file)
--- a/src/utf.c
+++ b/src/utf.c
@@ -6,7 +6,7 @@
  */
 
 #include <string.h>
-#include <stdint.h>
+#include "utf.h"
 
 int utf8_encode(int32_t codepoint, char *buffer, int *size)
 {