xref: /aosp_15_r20/external/libxml2/testdso.c (revision 7c5688314b92172186c154356a6374bf7684c3ca)
1 #include <stdio.h>
2 
3 #define IN_LIBXML
4 #include "libxml/xmlexports.h"
5 
6 XMLPUBFUN int hello_world(void);
7 
hello_world(void)8 int hello_world(void)
9 {
10   printf("Success!\n");
11   return 0;
12 }
13