diff options
Diffstat (limited to 'third_party/libxml/src/testdso.c')
-rw-r--r-- | third_party/libxml/src/testdso.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/libxml/src/testdso.c b/third_party/libxml/src/testdso.c new file mode 100644 index 0000000..bd4ff08 --- /dev/null +++ b/third_party/libxml/src/testdso.c @@ -0,0 +1,12 @@ +#include <stdio.h> + +#define IN_LIBXML +#include "libxml/xmlexports.h" + +XMLPUBFUN int hello_world(void); + +int hello_world(void) +{ + printf("Success!\n"); + return 0; +} |