| 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 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1193 exsltMathExpFunction) | 1193 exsltMathExpFunction) |
| 1194 #endif | 1194 #endif |
| 1195 && !xmlXPathRegisterFuncNS(ctxt, | 1195 && !xmlXPathRegisterFuncNS(ctxt, |
| 1196 (const xmlChar *) "constant", | 1196 (const xmlChar *) "constant", |
| 1197 (const xmlChar *) EXSLT_MATH_NAMESPACE, | 1197 (const xmlChar *) EXSLT_MATH_NAMESPACE, |
| 1198 exsltMathConstantFunction)) { | 1198 exsltMathConstantFunction)) { |
| 1199 return 0; | 1199 return 0; |
| 1200 } | 1200 } |
| 1201 return -1; | 1201 return -1; |
| 1202 } | 1202 } |
| OLD | NEW |