blob: 2f2dfc65cba67fdc047dcc1c7a989c29d67395e0 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <fcntl.h>
2#include <stdlib.h>
3#include <stdio.h>
4#include <dlfcn.h>
5
6extern int dltest(const char *s);
7
8int main(int argc, char **argv)
9{
10 dltest("hello world!");
11 return EXIT_SUCCESS;
12}
13