blob: 2f2dfc65cba67fdc047dcc1c7a989c29d67395e0 [file] [log] [blame]
#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;
}