diff options
author | Patrick Lam <plam@MIT.EDU> | 2006-04-07 17:27:39 +0000 |
---|---|---|
committer | Patrick Lam <plam@MIT.EDU> | 2006-04-07 17:27:39 +0000 |
commit | 44415a079a3e9951e0c2424edca4907a93a60db5 (patch) | |
tree | b466550bddb38acd8be8c19e5f0919ef8f1e9ce1 /src/fcfs.c | |
parent | 91fe51b4f8cf792041bc5cad34797b87abd63e67 (diff) |
Portability fixes for HP-UX (reported by Christoph Bauer). Replace
'__inline__' by AC_C_INLINE and 'inline'. Replace '__alignof__' by
'fc_alignof'.
reviewed by: plam
Diffstat (limited to 'src/fcfs.c')
-rw-r--r-- | src/fcfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ FcFontSetNeededBytes (FcFontSet *s) int FcFontSetNeededBytesAlign (void) { - return __alignof__(int) + + return fc_alignof (int) + FcPatternNeededBytesAlign () + FcObjectNeededBytesAlign (); } |