blob: bd4ff0865d991cf1b88d8c7c6f98ff155ed1518c [file] [log] [blame]
Daniel Veillardce1648b2005-01-04 15:10:22 +00001#include <stdio.h>
2
3#define IN_LIBXML
4#include "libxml/xmlexports.h"
5
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00006XMLPUBFUN int hello_world(void);
7
8int hello_world(void)
Daniel Veillardce1648b2005-01-04 15:10:22 +00009{
10 printf("Success!\n");
11 return 0;
12}