File: testdso.c

package info (click to toggle)
libxml2 2.7.8.dfsg-2%2Bsqueeze8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 22,716 kB
  • ctags: 22,901
  • sloc: ansic: 172,065; xml: 22,666; python: 11,070; sh: 10,328; makefile: 1,819; php: 364; perl: 67
file content (12 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (37)
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;
}