aboutsummaryrefslogtreecommitdiffstats
path: root/xmlIO.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-10-22 17:35:37 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-10-22 17:35:37 +0000
commite645e8c1414b53d96b6cca3c7691005b75b2e647 (patch)
tree48f6df0badc9d67f9bae6f5ddb22fa4345ac3ecd /xmlIO.c
parentf000f0730381ec768d093c76689b4abb68d7b6cf (diff)
downloadandroid_external_libxml2-e645e8c1414b53d96b6cca3c7691005b75b2e647.tar.gz
android_external_libxml2-e645e8c1414b53d96b6cca3c7691005b75b2e647.tar.bz2
android_external_libxml2-e645e8c1414b53d96b6cca3c7691005b75b2e647.zip
Applied the VMS update patch from Craig A. Berry update Daniel
* vms/build_libxml.com vms/config.vms vms/readme.vms include/libxml/parser.h include/libxml/parserInternals.h include/libxml/tree.h include/libxml/xmlIO.h HTMLparser.c catalog.c debugXML.c parser.c parserInternals.c tree.c triodef.h trionan.c uri.c xmlIO.c xpath.c: Applied the VMS update patch from Craig A. Berry * doc/*.html: update Daniel
Diffstat (limited to 'xmlIO.c')
-rw-r--r--xmlIO.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/xmlIO.c b/xmlIO.c
index 0972e3fa..1bff44a6 100644
--- a/xmlIO.c
+++ b/xmlIO.c
@@ -79,11 +79,6 @@
#endif
#include <libxml/globals.h>
-#ifdef VMS
-#define xmlRegisterDefaultInputCallbacks xmlRegisterDefInputCallbacks
-#define xmlRegisterDefaultOutputCallbacks xmlRegisterDefOutputCallbacks
-#endif
-
/* #define VERBOSE_FAILURE */
/* #define DEBUG_EXTERNAL_ENTITIES */
/* #define DEBUG_INPUT */
@@ -1465,11 +1460,7 @@ xmlRegisterOutputCallbacks(xmlOutputMatchCallback matchFunc,
* Registers the default compiled-in I/O handlers.
*/
void
-#ifdef VMS
-xmlRegisterDefInputCallbacks
-#else
xmlRegisterDefaultInputCallbacks
-#endif
(void) {
if (xmlInputCallbackInitialized)
return;
@@ -1499,11 +1490,7 @@ xmlRegisterDefaultInputCallbacks
* Registers the default compiled-in I/O handlers.
*/
void
-#ifdef VMS
-xmlRegisterDefOutputCallbacks
-#else
xmlRegisterDefaultOutputCallbacks
-#endif
(void) {
if (xmlOutputCallbackInitialized)
return;
@@ -1706,8 +1693,6 @@ xmlOutputBufferClose(xmlOutputBufferPtr out) {
* @URI: a C string containing the URI or filename
* @enc: the charset encoding if known
*
- * VMS version of xmlParserInputBufferCreateFilename()
- *
* Returns the new parser input or NULL
*/
/**
@@ -1724,11 +1709,7 @@ xmlOutputBufferClose(xmlOutputBufferPtr out) {
* Returns the new parser input or NULL
*/
xmlParserInputBufferPtr
-#ifdef VMS
-xmlParserInputBufferCreateFname
-#else
xmlParserInputBufferCreateFilename
-#endif
(const char *URI, xmlCharEncoding enc) {
xmlParserInputBufferPtr ret;
int i = 0;