dlfcn.h 400 B

123456789101112131415161718
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: Richard Kelsey, Jonathan Rees, Mike Sperber
  5. */
  6. /*
  7. * This include file is for systems which do not have dynamic loading.
  8. */
  9. #if ! defined(HAVE_DLOPEN)
  10. extern void *dlopen(char *filename, int flags);
  11. extern char *dlerror(void);
  12. extern void *dlsym(void *lib, char *name);
  13. extern int dlclose(void *lib);
  14. #endif