diff options
Diffstat (limited to 'dlfcn.h')
-rw-r--r-- | dlfcn.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -44,8 +44,8 @@ extern "C" { | |||
44 | * Note: All other RTLD_* flags in any dlfcn.h are not standard compliant. | 44 | * Note: All other RTLD_* flags in any dlfcn.h are not standard compliant. |
45 | */ | 45 | */ |
46 | 46 | ||
47 | #define RTLD_DEFAULT 0 | 47 | #define RTLD_DEFAULT ((void *)0) |
48 | #define RTLD_NEXT 0 | 48 | #define RTLD_NEXT ((void *)-1) |
49 | 49 | ||
50 | DLFCN_EXPORT void *dlopen ( const char *file, int mode ); | 50 | DLFCN_EXPORT void *dlopen ( const char *file, int mode ); |
51 | DLFCN_EXPORT int dlclose(void *handle); | 51 | DLFCN_EXPORT int dlclose(void *handle); |