blob: ea6eb3dfeb8275b10ae555fab1e3455d604e613e [file] [log] [blame]
#include <libexslt/exslt.h>
#include <libxslt/xslt.h>
#include <libxslt/xsltInternals.h>
int main()
{
xsltInit();
xsltStylesheet* style = xsltNewStylesheet();
exsltRegisterAll();
xsltFreeStylesheet(style);
xsltCleanupGlobals();
return 0;
}