diff options
Diffstat (limited to 'make/stub_includes/macosx/dynamic-linker.h')
-rwxr-xr-x | make/stub_includes/macosx/dynamic-linker.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/make/stub_includes/macosx/dynamic-linker.h b/make/stub_includes/macosx/dynamic-linker.h index 11afcdc..a3c2f8d 100755 --- a/make/stub_includes/macosx/dynamic-linker.h +++ b/make/stub_includes/macosx/dynamic-linker.h @@ -25,8 +25,8 @@ /* Based on the dlcompat work done by: - Jorge Acereda <[email protected]> & - Peter O'Gorman <[email protected]> + Jorge Acereda <[email protected]> & + Peter O'Gorman <[email protected]> */ extern int dlclose(void * __handle); @@ -34,13 +34,13 @@ extern char * dlerror(void); extern void * dlopen(const char * __path, int __mode); extern void * dlsym(void * __handle, const char * __symbol); -#define RTLD_LAZY 0x1 -#define RTLD_NOW 0x2 -#define RTLD_LOCAL 0x4 -#define RTLD_GLOBAL 0x8 +#define RTLD_LAZY 0x1 +#define RTLD_NOW 0x2 +#define RTLD_LOCAL 0x4 +#define RTLD_GLOBAL 0x8 /* * Special handle arguments for dlsym(). */ -#define RTLD_NEXT -1LL /* Search subsequent objects. */ -#define RTLD_DEFAULT -2LL /* Use default search algorithm. */ +#define RTLD_NEXT -1LL /* Search subsequent objects. */ +#define RTLD_DEFAULT -2LL /* Use default search algorithm. */ |