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 1691dda..767a742 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 a66d388..e5ec90b 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)
 {