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