We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8397fda commit 4bbd4f5Copy full SHA for 4bbd4f5
examples/libdl/dlfcn.h
@@ -5,10 +5,10 @@
5
#if !defined(_DLFCN_H)
6
#define _DLFCN_H
7
8
-#define RTLD_LAZY 0x1
9
-#undef RTLD_NOW /* unimplemented */
10
-#define RTLD_GLOBAL 0x4
11
-#undef RTLD_LOCAL /* unimplemented */
+#define RTLD_LAZY 0x0001
+#define RTLD_NOW 0x0002
+#define RTLD_GLOBAL 0x0100
+#define RTLD_LOCAL 0
12
13
void *dlopen(const char *name, int mode);
14
void *dlsym(void *h, const char *name);
0 commit comments