aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2010-03-18 07:18:43 +0200
committerPetri Lehtinen <petri@digip.org>2010-03-18 07:22:43 +0200
commita2a9107600da8ed0302e414fef8b9e70233e71ca (patch)
treec06f0f0285f7ca23de7a10e9a9303b3c6698a13f /src
parent286823227c8c06e729dd939ec53b124c5c9afbc4 (diff)
downloadjansson-a2a9107600da8ed0302e414fef8b9e70233e71ca.zip
jansson-a2a9107600da8ed0302e414fef8b9e70233e71ca.tar.gz
jansson-a2a9107600da8ed0302e414fef8b9e70233e71ca.tar.bz2
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.
Diffstat (limited to 'src')
-rw-r--r--src/utf.c2
1 files changed, 1 insertions, 1 deletions
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 <string.h>
-#include <stdint.h>
+#include "utf.h"
int utf8_encode(int32_t codepoint, char *buffer, int *size)
{