File: testdso.c

package info (click to toggle)
libxml2 2.6.32.dfsg-5%2Blenny5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 22,564 kB
  • ctags: 22,436
  • sloc: ansic: 166,906; xml: 20,750; python: 11,029; sh: 9,334; makefile: 1,758; php: 364; perl: 67
file content (12 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (41)
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;
}