1 #include <libexslt/exslt.h>
2 #include <libxslt/xslt.h>
3 #include <libxslt/xsltInternals.h>
4 
main()5 int main()
6 {
7   xsltInit();
8 
9   xsltStylesheet* style = xsltNewStylesheet();
10   exsltRegisterAll();
11   xsltFreeStylesheet(style);
12 
13   xsltCleanupGlobals();
14 
15   return 0;
16 }
17