diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2002-04-18 20:58:15 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2002-04-18 20:58:15 +0000 |
commit | 0d925903c791f8bf0d4fc76d65c02db8edfaacd2 (patch) | |
tree | ff86a803aa4967e1e04fab28525beaf88359dd38 /libexslt | |
parent | f1033321c0cfff2208b54db199e99b4f21fa767d (diff) | |
download | libxslt-0d925903c791f8bf0d4fc76d65c02db8edfaacd2.tar.gz libxslt-0d925903c791f8bf0d4fc76d65c02db8edfaacd2.tar.bz2 libxslt-0d925903c791f8bf0d4fc76d65c02db8edfaacd2.zip |
extern "C" { missing by Mark Vakoc Daniel
* libexslt/exslt.h: extern "C" { missing by Mark Vakoc
Daniel
Diffstat (limited to 'libexslt')
-rw-r--r-- | libexslt/exslt.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libexslt/exslt.h b/libexslt/exslt.h index d80a4449..71e01ce6 100644 --- a/libexslt/exslt.h +++ b/libexslt/exslt.h @@ -5,6 +5,10 @@ #include <libxml/tree.h> #include "exsltconfig.h" +#ifdef _cplusplus +extern "C" { +#endif + LIBEXSLT_PUBLIC extern const char *exsltLibraryVersion; LIBEXSLT_PUBLIC extern const int exsltLibexsltVersion; LIBEXSLT_PUBLIC extern const int exsltLibxsltVersion; @@ -28,5 +32,8 @@ void LIBEXSLT_PUBLIC exsltSaxonRegister (void); void LIBEXSLT_PUBLIC exsltRegisterAll (void); +#ifdef _cplusplus +} +#endif #endif /* __EXSLT_H__ */ |