diff options
author | Carl Worth <cworth@cworth.org> | 2008-04-01 15:20:42 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2008-04-01 15:20:42 -0700 |
commit | 07130a9061b012bb5c206dc547b4cc0cc69dcbf1 (patch) | |
tree | ec77a94ab99f24a1af8e67c4b7ed82b5ae6f1d2e /src/cairo-quartz-font.c | |
parent | 46ea00d829bc50ab5316d2257e0d1ed1d8e3f4b6 (diff) |
Include cairoint.h first to satisfy the test suite
Forgetting to include cairoint.h (or not including it first) can
cause some subtle bugs due to specific feature flags not being
set, etc.
Diffstat (limited to 'src/cairo-quartz-font.c')
-rw-r--r-- | src/cairo-quartz-font.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-quartz-font.c b/src/cairo-quartz-font.c index 52a54989..e8eaba91 100644 --- a/src/cairo-quartz-font.c +++ b/src/cairo-quartz-font.c @@ -34,10 +34,10 @@ * Vladimir Vukicevic <vladimir@mozilla.com> */ -#include <dlfcn.h> - #include "cairoint.h" +#include <dlfcn.h> + #include "cairo-quartz.h" #include "cairo-quartz-private.h" |