1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-20 07:36:05 +00:00
reactos/lib/3rdparty/libxml2/testdso.c

13 lines
166 B
C
Raw Normal View History

#include <stdio.h>
#define IN_LIBXML
#include "libxml/xmlexports.h"
XMLPUBFUN int hello_world(void);
int hello_world(void)
{
printf("Success!\n");
return 0;
}