Get endianess right.

Why would an XML library need to know about endianess anyway ??

Prodded by, long time ago:	ahze
This commit is contained in:
Poul-Henning Kamp 2007-04-24 06:29:27 +00:00
parent 194617769b
commit 8f30c4da04
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168998

View File

@ -1,7 +1,13 @@
/* $FreeBSD$ */
#include <machine/endian.h>
/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
#if BYTE_ORDER == LITTLE_ENDIAN
#define BYTEORDER 1234
#else
#define BYTEORDER 4321
#endif
/* Define to 1 if you have the `bcopy' function. */
#define HAVE_BCOPY 1
@ -67,7 +73,11 @@
#define STDC_HEADERS 1
/* whether byteorder is bigendian */
/* #undef WORDS_BIGENDIAN */
#if BYTE_ORDER == BIG_ENDIAN
#define WORDS_BIGENDIAN
#else
#undef WORDS_BIGENDIAN
#endif
/* Define to specify how much context to retain around the current parse
point. */