Move FcAlign to fcint.h

This commit is contained in:
Behdad Esfahbod 2009-11-16 15:12:52 -05:00
parent 36ae1d9563
commit 8009229bc5
2 changed files with 8 additions and 8 deletions

View 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;

View File

@ -22,14 +22,6 @@
#include "fcint.h"
typedef union _FcAlign {
double d;
int i;
intptr_t ip;
FcBool b;
void *p;
} FcAlign;
intptr_t
FcAlignSize (intptr_t size)
{