From 30d427bcd2127a30b6d3301e6d391e8c528a85f2 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 30 Oct 2002 20:53:18 +0000 Subject: Use '#ifdef __linux__' not '#ifdef linux' --- ldso/util/bswap.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ldso') diff --git a/ldso/util/bswap.h b/ldso/util/bswap.h index 5388c11c6..1742d2507 100644 --- a/ldso/util/bswap.h +++ b/ldso/util/bswap.h @@ -6,7 +6,7 @@ #endif #ifndef __BYTE_ORDER -#ifdef linux +#ifdef __linux__ #include #else #define __LITTLE_ENDIAN 1234 /* least-significant byte first (vax, pc) */ @@ -21,7 +21,7 @@ #define __BYTE_ORDER __BIG_ENDIAN #endif -#endif /* linux */ +#endif /* __linux__ */ #endif /* __BYTE_ORDER */ @@ -29,7 +29,7 @@ # error "Undefined __BYTE_ORDER" #endif -#ifdef linux +#ifdef __linux__ #include #else #include -- cgit v1.2.3