test3.c 197 B

12345678910111213
  1. #include <fcntl.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <dlfcn.h>
  5. extern int dltest(const char *s);
  6. int main(int argc, char **argv)
  7. {
  8. dltest("hello world!");
  9. return EXIT_SUCCESS;
  10. }