mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-13 14:39:10 +00:00
Undiamond Python headers
This change gets the Python codebase into a state where it conforms to the conventions of this codebase. It's now possible to include headers from Python, without worrying about ordering. Python has traditionally solved that problem by "diamonding" everything in Python.h, but that's problematic since it means any change to any Python header invalidates all the build artifacts. Lastly it makes tooling not work. Since it is hard to explain to Emacs when I press C-c C-h to add an import line it shouldn't add the header that actually defines the symbol, and instead do follow the nonstandard Python convention. Progress has been made on letting Python load source code from the zip executable structure via the standard C library APIs. System calss now recognizes zip!FILENAME alternative URIs as equivalent to zip:FILENAME since Python uses colon as its delimiter. Some progress has been made on embedding the notice license terms into the Python object code. This is easier said than done since Python has an extremely complicated ownership story. - Some termios APIs have been added - Implement rewinddir() dirstream API - GetCpuCount() API added to Cosmopolitan Libc - More bugs in Cosmopolitan Libc have been fixed - zipobj.com now has flags for mangling the path - Fixed bug a priori with sendfile() on certain BSDs - Polyfill F_DUPFD and F_DUPFD_CLOEXEC across platforms - FIOCLEX / FIONCLEX now polyfilled for fast O_CLOEXEC changes - APE now supports a hybrid solution to no-self-modify for builds - Many BSD-only magnums added, e.g. O_SEARCH, O_SHLOCK, SF_NODISKIO
This commit is contained in:
parent
20bb8db9f8
commit
b420ed8248
762 changed files with 18410 additions and 53772 deletions
128
third_party/python/Modules/expat/xmlrole.c
vendored
128
third_party/python/Modules/expat/xmlrole.c
vendored
|
@ -31,11 +31,17 @@
|
|||
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "expat_config.h"
|
||||
#include "expat_external.h"
|
||||
#include "internal.h"
|
||||
#include "xmlrole.h"
|
||||
#include "ascii.h"
|
||||
asm(".ident\t\"\\n\\n\
|
||||
expat (MIT License)\\n\
|
||||
Copyright (c) 1997-2000 Thai Open Source Software Center Ltd\\n\
|
||||
Copyright (c) 2000-2017 Expat development team\"");
|
||||
asm(".include \"libc/disclaimer.inc\"");
|
||||
|
||||
#include "third_party/python/Modules/expat/expat_config.h"
|
||||
#include "third_party/python/Modules/expat/expat_external.h"
|
||||
#include "third_party/python/Modules/expat/internal.inc"
|
||||
#include "third_party/python/Modules/expat/xmlrole.h"
|
||||
#include "third_party/python/Modules/expat/ascii.inc"
|
||||
|
||||
/* Doesn't check:
|
||||
|
||||
|
@ -105,9 +111,9 @@ static const char KW_SYSTEM[]
|
|||
# define setTopLevel(state) ((state)->handler = internalSubset)
|
||||
#endif /* not XML_DTD */
|
||||
|
||||
typedef int PTRCALL PROLOG_HANDLER(PROLOG_STATE *state, int tok,
|
||||
const char *ptr, const char *end,
|
||||
const ENCODING *enc);
|
||||
typedef int PROLOG_HANDLER(PROLOG_STATE *state, int tok,
|
||||
const char *ptr, const char *end,
|
||||
const ENCODING *enc);
|
||||
|
||||
static PROLOG_HANDLER prolog0, prolog1, prolog2, doctype0, doctype1, doctype2,
|
||||
doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2,
|
||||
|
@ -121,9 +127,9 @@ static PROLOG_HANDLER prolog0, prolog1, prolog2, doctype0, doctype1, doctype2,
|
|||
#endif /* XML_DTD */
|
||||
declClose, error;
|
||||
|
||||
static int FASTCALL common(PROLOG_STATE *state, int tok);
|
||||
static int common(PROLOG_STATE *state, int tok);
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
prolog0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -154,7 +160,7 @@ prolog0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
prolog1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -186,7 +192,7 @@ prolog1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
prolog2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -206,7 +212,7 @@ prolog2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
doctype0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -223,7 +229,7 @@ doctype0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
doctype1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -249,7 +255,7 @@ doctype1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
doctype2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -265,7 +271,7 @@ doctype2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
doctype3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -281,7 +287,7 @@ doctype3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
doctype4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -300,7 +306,7 @@ doctype4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
doctype5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -316,7 +322,7 @@ doctype5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
internalSubset(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -361,7 +367,7 @@ internalSubset(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
|
||||
#ifdef XML_DTD
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
externalSubset0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
state->handler = externalSubset1;
|
||||
|
@ -370,7 +376,7 @@ externalSubset0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return externalSubset1(state, tok, ptr, end, enc);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
externalSubset1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -398,7 +404,7 @@ externalSubset1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
|
||||
#endif /* XML_DTD */
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -417,7 +423,7 @@ entity0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -433,7 +439,7 @@ entity1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -457,7 +463,7 @@ entity2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -473,7 +479,7 @@ entity3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -489,7 +495,7 @@ entity4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -508,7 +514,7 @@ entity5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -525,7 +531,7 @@ entity6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -549,7 +555,7 @@ entity7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity8(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -565,7 +571,7 @@ entity8(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity9(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -581,7 +587,7 @@ entity9(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
entity10(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -597,7 +603,7 @@ entity10(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
notation0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -613,7 +619,7 @@ notation0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
notation1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -633,7 +639,7 @@ notation1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
notation2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -649,7 +655,7 @@ notation2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
notation3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -666,7 +672,7 @@ notation3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
notation4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -686,7 +692,7 @@ notation4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -703,7 +709,7 @@ attlist0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -723,7 +729,7 @@ attlist1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -753,7 +759,7 @@ attlist2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -771,7 +777,7 @@ attlist3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -790,7 +796,7 @@ attlist4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -806,7 +812,7 @@ attlist5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -822,7 +828,7 @@ attlist6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -842,7 +848,7 @@ attlist7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
}
|
||||
|
||||
/* default value */
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist8(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -872,7 +878,7 @@ attlist8(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
attlist9(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -888,7 +894,7 @@ attlist9(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
element0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -905,7 +911,7 @@ element0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
element1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -931,7 +937,7 @@ element1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
element2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -965,7 +971,7 @@ element2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
element3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -989,7 +995,7 @@ element3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
element4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -1006,7 +1012,7 @@ element4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
element5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -1026,7 +1032,7 @@ element5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
element6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -1055,7 +1061,7 @@ element6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
element7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -1104,7 +1110,7 @@ element7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
|
||||
#ifdef XML_DTD
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
condSect0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
switch (tok) {
|
||||
|
@ -1124,7 +1130,7 @@ condSect0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
condSect1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -1141,7 +1147,7 @@ condSect1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
return common(state, tok);
|
||||
}
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
condSect2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -1159,7 +1165,7 @@ condSect2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
|
||||
#endif /* XML_DTD */
|
||||
|
||||
static int PTRCALL
|
||||
static int
|
||||
declClose(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(ptr);
|
||||
|
@ -1195,7 +1201,7 @@ declClose(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
*
|
||||
* LCOV_EXCL_START
|
||||
*/
|
||||
static int PTRCALL
|
||||
static int
|
||||
error(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
||||
const ENCODING *enc) {
|
||||
UNUSED_P(state);
|
||||
|
@ -1207,7 +1213,7 @@ error(PROLOG_STATE *state, int tok, const char *ptr, const char *end,
|
|||
}
|
||||
/* LCOV_EXCL_STOP */
|
||||
|
||||
static int FASTCALL
|
||||
static int
|
||||
common(PROLOG_STATE *state, int tok) {
|
||||
#ifdef XML_DTD
|
||||
if (! state->documentEntity && tok == XML_TOK_PARAM_ENTITY_REF)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue