diff -r 000000000000 -r 21a6c17f4e3e include/cf_fixup.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/cf_fixup.h Mon Sep 28 23:39:08 2009 -0700 @@ -0,0 +1,9 @@ +typedef double CFSwappedFloat64; + +static inline CFSwappedFloat64 CFConvertDoubleHostToSwapped(double d) { return d; }; +static inline double CFConvertDoubleSwappedToHost(CFSwappedFloat64 d) { return d; }; + +#define OSSwapHostToLittleInt32(x) (x) +#define OSSwapHostToLittleInt16(x) (x) +#define OSSwapLittleToHostInt32(x) (x) +#define OSSwapLittleToHostInt16(x) (x)