summaryrefslogtreecommitdiff
path: root/src/cairo-unicode.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2007-04-03 20:25:30 -0400
committerBehdad Esfahbod <behdad@behdad.org>2007-04-03 20:28:11 -0400
commit8fbf50d31da9e13f1e55c7ee19586b7c394684ba (patch)
tree375f55d2684b5e11b5a3f70ffd0d9b71272dd2c6 /src/cairo-unicode.c
parentffc7d06da0f97390025a510b9532e4a64e9230f4 (diff)
downloadcairo-8fbf50d31da9e13f1e55c7ee19586b7c394684ba.tar.gz
[src] Make sure all source files #include "cairoint.h" as their first include
This is necessary to avoid many portability problems as cairoint.h includes config.h. Without a test, we will regress again, hence add it. The inclusion idiom for cairo now is: #include "cairoint.h" #include "cairo-something.h" #include "cairo-anotherthing-private.h" #include <some-library.h> #include <other-library/other-file.h> Moreover, some standard headers files are included from cairoint.h and need not be included again.
Diffstat (limited to 'src/cairo-unicode.c')
-rw-r--r--src/cairo-unicode.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cairo-unicode.c b/src/cairo-unicode.c
index 5ca51e1e2..9abb0ebca 100644
--- a/src/cairo-unicode.c
+++ b/src/cairo-unicode.c
@@ -40,9 +40,7 @@
* Owen Taylor <otaylor@redhat.com>
*/
-#include <limits.h>
-
-#include <cairoint.h>
+#include "cairoint.h"
#define UTF8_COMPUTE(Char, Mask, Len) \
if (Char < 128) \