zig-build-libxml2/upstream/testdso.c
Mitchell Hashimoto 8acdcf23eb
initial commit
2023-08-03 21:50:34 -07:00

13 lines
166 B
C
Vendored

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