mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 18:44:54 +00:00
3b35430557
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3734 d0543943-73ff-0310-b7d9-9358b9ac24b2
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
|