From 8a889bcb26e7d99c4df5cff57dd0c27fd54be5bc Mon Sep 17 00:00:00 2001 From: John Polstra Date: Sat, 29 Jan 2000 01:53:35 +0000 Subject: [PATCH] Add a #define for RTLD_LOCAL as required by the Single Unix Specification. --- include/dlfcn.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dlfcn.h b/include/dlfcn.h index 09edf2dde31b..14a2b4d25be2 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -44,6 +44,7 @@ #define RTLD_NOW 2 /* Bind function calls immediately */ #define RTLD_MODEMASK 0x3 #define RTLD_GLOBAL 0x100 /* Make symbols globally available */ +#define RTLD_LOCAL 0 /* Opposite of RTLD_GLOBAL, and the default */ /* * Special handle argument for dlsym(). It causes the search for the