* Added support for XML_LARGE_SIZE.
[mirror-ossqm-expat.git] / vms / expat_config.h
blobd5db89e56c66d05bb3a4c7f873566e17862b16a3
1 /* Copyright 2000, Clark Cooper
2 All rights reserved.
4 This is free software. You are permitted to copy, distribute, or modify
5 it under the terms of the MIT/X license (contained in the COPYING file
6 with this distribution.)
7 */
9 /* Define to empty if the keyword does not work. */
10 #undef const
12 /* Define if you have a working `mmap' system call. */
13 #undef HAVE_MMAP
15 /* Define to `long' if <sys/types.h> doesn't define. */
16 #undef off_t
18 /* Define to `unsigned' if <sys/types.h> doesn't define. */
19 #undef size_t
21 /* Define if your processor stores words with the most significant
22 byte first (like Motorola and SPARC, unlike Intel and VAX). */
23 #undef WORDS_BIGENDIAN
25 /* Define if you have the bcopy function. */
26 #undef HAVE_BCOPY
28 /* Define if you have the memmove function. */
29 #define HAVE_MEMMOVE 1
31 /* Define if you have the <unistd.h> header file. */
32 #define HAVE_UNISTD_H 1
34 #define XML_NS
35 #define XML_DTD
37 #ifdef WORDS_BIGENDIAN
38 #define XML_BYTE_ORDER 21
39 #else
40 #define XML_BYTE_ORDER 12
41 #endif
43 #define XML_CONTEXT_BYTES 1024
45 #ifndef HAVE_MEMMOVE
46 #ifdef HAVE_BCOPY
47 #define memmove(d,s,l) bcopy((s),(d),(l))
48 #else
49 #define memmove(d,s,l) ;punting on memmove;
50 #endif
52 #endif