1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/include/cf_fixup.h Mon Sep 28 23:39:08 2009 -0700
1.3 @@ -0,0 +1,9 @@
1.4 +typedef double CFSwappedFloat64;
1.5 +
1.6 +static inline CFSwappedFloat64 CFConvertDoubleHostToSwapped(double d) { return d; };
1.7 +static inline double CFConvertDoubleSwappedToHost(CFSwappedFloat64 d) { return d; };
1.8 +
1.9 +#define OSSwapHostToLittleInt32(x) (x)
1.10 +#define OSSwapHostToLittleInt16(x) (x)
1.11 +#define OSSwapLittleToHostInt32(x) (x)
1.12 +#define OSSwapLittleToHostInt16(x) (x)