diff options
author | Michael Bien <[email protected]> | 2011-02-09 15:04:48 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-02-09 15:04:48 +0100 |
commit | e20879b9f124ecca8bc7467013e118d1b7f5782b (patch) | |
tree | 30b0fe9a9d048a3a55264798a993929c5f848e25 /make/stub_includes/macosx/dynamic-linker.h | |
parent | 1f3c9cfe8d1c5890780ad150b23b7cdb0d8e7692 (diff) | |
parent | 67dfcd32379b50dd451a1e979096e30e24ad0e68 (diff) |
Merge branch 'master' of github.com:sgothel/gluegen
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. */ |