| OLD | NEW |
| 1 #define IN_LIBEXSLT | 1 #define IN_LIBEXSLT |
| 2 #include "libexslt/libexslt.h" | 2 #include "libexslt/libexslt.h" |
| 3 | 3 |
| 4 #if defined(WIN32) && !defined (__CYGWIN__) && (!__MINGW32__) | 4 #if defined(WIN32) && !defined (__CYGWIN__) && (!__MINGW32__) |
| 5 #include <win32config.h> | 5 #include <win32config.h> |
| 6 #else | 6 #else |
| 7 #include "config.h" | 7 #include "config.h" |
| 8 #endif | 8 #endif |
| 9 | 9 |
| 10 #include <libxml/tree.h> | 10 #include <libxml/tree.h> |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 xsltRegisterExtModuleFunction((const xmlChar *) "evaluate", | 304 xsltRegisterExtModuleFunction((const xmlChar *) "evaluate", |
| 305 SAXON_NAMESPACE, | 305 SAXON_NAMESPACE, |
| 306 exsltSaxonEvaluateFunction); | 306 exsltSaxonEvaluateFunction); |
| 307 xsltRegisterExtModuleFunction ((const xmlChar *) "line-number", | 307 xsltRegisterExtModuleFunction ((const xmlChar *) "line-number", |
| 308 SAXON_NAMESPACE, | 308 SAXON_NAMESPACE, |
| 309 exsltSaxonLineNumberFunction); | 309 exsltSaxonLineNumberFunction); |
| 310 xsltRegisterExtModuleFunction ((const xmlChar *) "systemId", | 310 xsltRegisterExtModuleFunction ((const xmlChar *) "systemId", |
| 311 SAXON_NAMESPACE, | 311 SAXON_NAMESPACE, |
| 312 exsltSaxonSystemIdFunction); | 312 exsltSaxonSystemIdFunction); |
| 313 } | 313 } |
| OLD | NEW |