Daniel Veillard | ce1648b | 2005-01-04 15:10:22 +0000 | [diff] [blame] | 1 | #include <stdio.h> |
2 | |||||
3 | #define IN_LIBXML | ||||
4 | #include "libxml/xmlexports.h" | ||||
5 | |||||
Daniel Veillard | cee2b3a | 2005-01-25 00:22:52 +0000 | [diff] [blame] | 6 | XMLPUBFUN int hello_world(void); |
7 | |||||
8 | int hello_world(void) | ||||
Daniel Veillard | ce1648b | 2005-01-04 15:10:22 +0000 | [diff] [blame] | 9 | { |
10 | printf("Success!\n"); | ||||
11 | return 0; | ||||
12 | } |