diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2022-08-26 01:22:33 +0200 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2022-08-26 02:11:56 +0200 |
commit | 0f568c0b7376d5013a14e9186ec962b5aa033636 (patch) | |
tree | 286fc1f82577d02f78fc9242db8a510e91788f41 /xmlschemas.c | |
parent | 48f84ea8ed3bcd9c096accfdc1e8c2d588a557a4 (diff) | |
download | libxml2-0f568c0b7376d5013a14e9186ec962b5aa033636.tar.gz |
Consolidate private header files
Private functions were previously declared
- in header files in the root directory
- in public headers guarded with IN_LIBXML
- in libxml.h
- redundantly in source files that used them.
Consolidate all private header files in include/private.
Diffstat (limited to 'xmlschemas.c')
-rw-r--r-- | xmlschemas.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmlschemas.c b/xmlschemas.c index ccbd3ea3..ade10f78 100644 --- a/xmlschemas.c +++ b/xmlschemas.c @@ -76,6 +76,9 @@ #include <libxml/xmlreader.h> #endif +#include "private/error.h" +#include "private/string.h" + /* #define DEBUG 1 */ /* #define DEBUG_CONTENT 1 */ |