From 87a30ce50d390422b3f4f0bd0e3f0664fb6a7da7 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 27 Jun 2011 01:01:19 -0400 Subject: match LSB/glibc constants for dynamic loader --- include/dlfcn.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/dlfcn.h') diff --git a/include/dlfcn.h b/include/dlfcn.h index 81b829c8..cdca9ec6 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -1,10 +1,10 @@ #ifndef _DLFCN_H #define _DLFCN_H -#define RTLD_LAZY 0x10000 -#define RTLD_NOW 0x20000 -#define RTLD_GLOBAL 0x40000 -#define RTLD_LOCAL 0x80000 +#define RTLD_LAZY 1 +#define RTLD_NOW 2 +#define RTLD_GLOBAL 256 +#define RTLD_LOCAL 0 #if 1 #define RTLD_NEXT ((void *) -1l) -- cgit v1.2.1