File: testdso.c

package info (click to toggle)
libxml2 2.9.4%2Bdfsg1-2.2%2Bdeb9u2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 31,180 kB
  • sloc: ansic: 197,586; xml: 23,190; python: 21,415; sh: 5,055; makefile: 1,999; php: 365; perl: 67
file content (12 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (33)
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;
}