]> git.wh0rd.org - fontconfig.git/commitdiff
Move FcAlign to fcint.h
authorBehdad Esfahbod <behdad@behdad.org>
Mon, 16 Nov 2009 20:12:52 +0000 (15:12 -0500)
committerBehdad Esfahbod <behdad@behdad.org>
Mon, 16 Nov 2009 20:12:52 +0000 (15:12 -0500)
src/fcint.h
src/fcserialize.c

index 1691dda58ed6ab5d314fd47bfae8dd639cbbf080..767a742a314ae52ceb3e60a9f7b65c3be4b4ad1c 100644 (file)
@@ -351,6 +351,14 @@ struct _FcCache {
 
 #define FC_SERIALIZE_HASH_SIZE 8191
 
+typedef union _FcAlign {
+    double     d;
+    int                i;
+    intptr_t   ip;
+    FcBool     b;
+    void       *p;
+} FcAlign;
+
 typedef struct _FcSerializeBucket {
     struct _FcSerializeBucket *next;
     const void *object;
index a66d3889acbf142b62ebe61e8c72f0327d7bcd6f..e5ec90bde6785d78e9e153a0c00bf7b041933233 100644 (file)
 
 #include "fcint.h"
 
-typedef union _FcAlign {
-    double     d;
-    int                i;
-    intptr_t   ip;
-    FcBool     b;
-    void       *p;
-} FcAlign;
-
 intptr_t
 FcAlignSize (intptr_t size)
 {