dlclose.c 98 B

1234567
  1. #include <dlfcn.h>
  2. #include "dynlink.h"
  3. int dlclose(void *p)
  4. {
  5. return __dl_invalid_handle(p);
  6. }