diff options
Diffstat (limited to 'lib/csu')
-rw-r--r-- | lib/csu/i386/dlfcn.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/csu/i386/dlfcn.h b/lib/csu/i386/dlfcn.h index 51746d6..feadf90 100644 --- a/lib/csu/i386/dlfcn.h +++ b/lib/csu/i386/dlfcn.h @@ -37,6 +37,12 @@ #define _DLFCN_H_ #include <sys/cdefs.h> +/* + * Modes for dlopen(). + */ +#define RTLD_LAZY 1 /* Bind function calls lazily */ +#define RTLD_NOW 2 /* Bind function calls immediately */ + __BEGIN_DECLS void *dlopen __P((char *, int)); void *dlsym __P((void *, char *)); |