From a81fb89a445ae0dca286c861d8d51f705533df0d Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 24 Sep 2007 14:18:18 -0700 Subject: Fix building on a 64-bit system without a 32-bit system installed A bunch of glibc header files were bogusly included. We should not depend on having a 32-bit glibc installed, since we don't use it. --- com32/include/endian.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 com32/include/endian.h (limited to 'com32/include/endian.h') diff --git a/com32/include/endian.h b/com32/include/endian.h new file mode 100644 index 00000000..a6cd6d9b --- /dev/null +++ b/com32/include/endian.h @@ -0,0 +1,15 @@ +/* + * endian.h + */ + +#ifndef _ENDIAN_H +#define _ENDIAN_H + +#include + +#define LITTLE_ENDIAN __LITTLE_ENDIAN +#define BIG_ENDIAN __BIG_ENDIAN +#define PDP_ENDIAN __PDP_ENDIAN +#define BYTE_ORDER __BYTE_ORDER + +#endif /* _ENDIAN_H */ -- cgit