diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-19 16:45:40 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-19 16:45:40 +0100 |
commit | dfad54341b3d50a70d1b5641ff3f690572aeee03 (patch) | |
tree | e3b32728111656d6707fa2878ac0d298914083c2 | |
parent | 76071e42f3dcb22fec93c0ea963710988b566df0 (diff) |
add dlfcn constant
-rw-r--r-- | system/include/dlfcn.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/system/include/dlfcn.h b/system/include/dlfcn.h index 6854dab0..3a4edd00 100644 --- a/system/include/dlfcn.h +++ b/system/include/dlfcn.h @@ -3,10 +3,11 @@ extern "C" { #endif -#define RTLD_LAZY 1 -#define RTLD_NOW 2 -#define RTLD_GLOBAL 4 -#define RTLD_LOCAL 8 +#define RTLD_DEFAULT 0 +#define RTLD_LAZY 1 +#define RTLD_NOW 2 +#define RTLD_GLOBAL 4 +#define RTLD_LOCAL 8 typedef struct { const char *dli_fname; |