aboutsummaryrefslogtreecommitdiff
path: root/libxml2-2.9.10/testdso.c
blob: bd4ff0865d991cf1b88d8c7c6f98ff155ed1518c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

#define IN_LIBXML
#include "libxml/xmlexports.h"

XMLPUBFUN int hello_world(void);

int hello_world(void)
{
  printf("Success!\n");
  return 0;
}