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.
This commit is contained in:
Petri Lehtinen 2010-03-18 07:18:43 +02:00
parent 286823227c
commit a2a9107600

View File

@ -6,7 +6,7 @@
*/
#include <string.h>
#include <stdint.h>
#include "utf.h"
int utf8_encode(int32_t codepoint, char *buffer, int *size)
{