summaryrefslogtreecommitdiff
path: root/test/dlopen/test3.c
blob: 2f2dfc65cba67fdc047dcc1c7a989c29d67395e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
#include <dlfcn.h>

extern int dltest(const char *s);

int main(int argc, char **argv)
{
	dltest("hello world!");
	return EXIT_SUCCESS;
}