24 lines
382 B
C
24 lines
382 B
C
/* This file is used by autoheader to add items to expat_config.h.in */
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
#define XML_BYTE_ORDER 21
|
|
#else
|
|
#define XML_BYTE_ORDER 12
|
|
#endif
|
|
|
|
@BOTTOM@
|
|
|
|
#define XML_NS
|
|
#define XML_DTD
|
|
|
|
#define XML_CONTEXT_BYTES 1024
|
|
|
|
#ifndef HAVE_MEMMOVE
|
|
#ifdef HAVE_BCOPY
|
|
#define memmove(d,s,l) bcopy((s),(d),(l))
|
|
#else
|
|
#define memmove(d,s,l) ;punting on memmove;
|
|
#endif
|
|
|
|
#endif
|