aboutsummaryrefslogtreecommitdiffstats
path: root/testdso.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2005-01-25 00:22:52 +0000
committerDaniel Veillard <veillard@src.gnome.org>2005-01-25 00:22:52 +0000
commitcee2b3a5f124e19db46109132c22e1b8faec1c87 (patch)
tree0eaa389a24ad9bddc29aa73843dfe53da0653b1e /testdso.c
parentb9e2f26ed633d0aef1b4dd34cb98dab22acb45ac (diff)
downloadandroid_external_libxml2-cee2b3a5f124e19db46109132c22e1b8faec1c87.tar.gz
android_external_libxml2-cee2b3a5f124e19db46109132c22e1b8faec1c87.tar.bz2
android_external_libxml2-cee2b3a5f124e19db46109132c22e1b8faec1c87.zip
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
Diffstat (limited to 'testdso.c')
-rw-r--r--testdso.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/testdso.c b/testdso.c
index 8bdff7e0..bd4ff086 100644
--- a/testdso.c
+++ b/testdso.c
@@ -3,7 +3,9 @@
#define IN_LIBXML
#include "libxml/xmlexports.h"
-XMLPUBFUN int hello_world(void)
+XMLPUBFUN int hello_world(void);
+
+int hello_world(void)
{
printf("Success!\n");
return 0;