#include <sys/cdefs.h>
Go to the source code of this file.
|
#define | RTLD_LAZY 1 |
|
#define | RTLD_NOW 2 |
|
#define | RTLD_GLOBAL 0x100 /* Allow global searches in object */ |
|
#define | RTLD_LOCAL 0x200 |
|
#define | RTLD_NEXT ((void *) -1) /* Search subsequent objects. */ |
|
#define | RTLD_DEFAULT ((void *) -2) /* Use default search algorithm. */ |
|
#define | RTLD_SELF ((void *) -3) /* Search the caller itself. */ |
|
#define | RTLD_DI_UNRESOLVED 10 |
|
|
__BEGIN_DECLS void * | dlopen (const char *, int) |
|
int | dlclose (void *) |
|
void * | dlsym (void *__restrict, const char *__restrict) |
|
int | dlinfo (void *, int, void *) |
|
char * | dlerror (void) |
|