diff options
Diffstat (limited to 'src/game/q_shared.h')
-rw-r--r-- | src/game/q_shared.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/q_shared.h b/src/game/q_shared.h index 3bb7e433..8814b664 100644 --- a/src/game/q_shared.h +++ b/src/game/q_shared.h @@ -242,6 +242,7 @@ static inline float LittleFloat (const float l) { return FloatSwap(&l); } // the mac compiler can't handle >32k of locals, so we // just waste space and make big arrays static... #ifdef __linux__ +#ifndef __LCC__ //TA: q3lcc defines __linux__ // bk001205 - from Makefile #define stricmp strcasecmp @@ -284,6 +285,7 @@ inline static float LittleFloat (const float *l) { return FloatSwap(l); } #endif #endif +#endif //======================= FreeBSD DEFINES ===================== #ifdef __FreeBSD__ // rb010123 |