diff options
| author | Warner Losh <imp@FreeBSD.org> | 2003-04-06 03:30:44 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2003-04-06 03:30:44 +0000 |
| commit | 5222688930de5d772390de896432325e2faf7726 (patch) | |
| tree | 82052288e5e42469a1184069c5f374104252247e /tools | |
| parent | 01c516b02ab91525f193df2723501392d34056c7 (diff) | |
Notes
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build/endian.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/build/endian.h b/tools/build/endian.h index dbec54500ebc..bde044e5bfcc 100644 --- a/tools/build/endian.h +++ b/tools/build/endian.h @@ -2,11 +2,7 @@ * $FreeBSD$ */ -#include <sys/param.h> - -#if __FreeBSD_version >= 500034 -#include_next <sys/endian.h> -#else +#include <sys/types.h> #include <machine/endian.h> #define bswap16(x) (uint16_t) \ @@ -54,4 +50,3 @@ #define le32toh(x) bswap32((uint32_t)(x)) #define le64toh(x) bswap64((uint64_t)(x)) #endif /* _BYTE_ORDER == _LITTLE_ENDIAN */ -#endif |
