X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fdlfcn.h;h=13ab71dd071eb5cdfe0d6cc593d906bf8e6b819d;hb=0ab97350f01b42de0f9fd811ee08653169661859;hp=46c4e18555710eae3dde6fdc9f87f407cc0dc071;hpb=c1a9658bd19245ff0fb52d3da567815d822fb622;p=musl diff --git a/include/dlfcn.h b/include/dlfcn.h index 46c4e185..13ab71dd 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -9,12 +9,16 @@ extern "C" { #define RTLD_LAZY 1 #define RTLD_NOW 2 +#define RTLD_NOLOAD 4 +#define RTLD_NODELETE 4096 #define RTLD_GLOBAL 256 #define RTLD_LOCAL 0 #define RTLD_NEXT ((void *)-1) #define RTLD_DEFAULT ((void *)0) +#define RTLD_DI_LINKMAP 2 + int dlclose(void *); char *dlerror(void); void *dlopen(const char *, int); @@ -27,7 +31,12 @@ typedef struct { const char *dli_sname; void *dli_saddr; } Dl_info; -int dladdr(void *, Dl_info *); +int dladdr(const void *, Dl_info *); +int dlinfo(void *, int, void *); +#endif + +#if _REDIR_TIME64 +__REDIR(dlsym, __dlsym_time64); #endif #ifdef __cplusplus