Changeset ba3841e2 in mainline for uspace/lib/posix/src/dlfcn.c
- Timestamp:
- 2018-04-15T18:28:04Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 363fe7e
- Parents:
- c1f44ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/src/dlfcn.c
rc1f44ca rba3841e2 34 34 #include "posix/dlfcn.h" 35 35 36 _HIDE_LIBC_SYMBOL(dlopen);37 extern void *__helenos_libc_dlopen(const char *filename, int flags);38 39 void *dlopen(const char *filename, int flags)40 {41 if (flags != 0) {42 fprintf(stderr, "dlopen() not implemented with non-zero flags (%s:%d), something will NOT work.\n", __FILE__, __LINE__);43 }44 45 return __helenos_libc_dlopen(filename, 0);46 }47 48 36 int dlclose(void *handle) 49 37 {
Note:
See TracChangeset
for help on using the changeset viewer.