* Some FreeBSD cleanups

* Removed the remainder of the RPM stuff from the Makefile
This commit is contained in:
Tim Angus 2005-09-26 20:09:18 +00:00
parent cde9e9e93c
commit 909e96e41b
2 changed files with 4 additions and 10 deletions

View file

@ -333,9 +333,9 @@ inline static float LittleFloat (const float l) { return FloatSwap(&l); }
#if !idppc
static short BigShort( short l) { return ShortSwap(l); }
#define LittleShort
static int BigLong(int l) { LongSwap(l); }
static int BigLong(int l) { return LongSwap(l); }
#define LittleLong
static float BigFloat(const float l) { FloatSwap(&l); }
static float BigFloat(const float l) { return FloatSwap(&l); }
#define LittleFloat
#else
#define BigShort