testdso.c 166 B

123456789101112
  1. #include <stdio.h>
  2. #define IN_LIBXML
  3. #include "libxml/xmlexports.h"
  4. XMLPUBFUN int hello_world(void);
  5. int hello_world(void)
  6. {
  7. printf("Success!\n");
  8. return 0;
  9. }