aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system/include/dlfcn.h9
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;