1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00
libxml2/testdso.c
Daniel Veillard cee2b3a5f1 warning patches from Peter Breitenlohner serious DTD parsing speedups,
* testdso.c xmlregexp.c: warning patches from Peter Breitenlohner
* include/libxml/valid.h valid.c parser.c: serious DTD parsing
  speedups, start to deprecate 3 ElementDef related entry point
  and replace them with better ones.
Daniel
2005-01-25 00:22:52 +00:00

13 lines
166 B
C

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