Changes in uspace/lib/c/generic/dlfcn.c [c6f1eb05:8a1fb09] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/dlfcn.c
rc6f1eb05 r8a1fb09 38 38 #include <stdlib.h> 39 39 #include <dlfcn.h> 40 41 #ifdef CONFIG_RTLD42 40 43 41 #include <rtld/module.h> … … 89 87 } 90 88 91 #else /* CONFIG_RTLD not defined */92 93 void *dlopen(const char *path, int flag)94 {95 return NULL;96 }97 98 void *dlsym(void *mod, const char *sym_name)99 {100 return NULL;101 }102 103 #endif104 105 89 /** @} 106 90 */
Note:
See TracChangeset
for help on using the changeset viewer.