diff options
author | Sven Gothel <[email protected]> | 2011-02-09 05:31:08 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-09 05:31:08 +0100 |
commit | 3b893bc3d38b03222749894da61be22ba128c494 (patch) | |
tree | 4be9239d87de1221a19efef8a11df3776bb9f39f /make/stub_includes | |
parent | 4026ba2641a98a742dd3b98cfc72d12c409e2250 (diff) |
Expand tabs to 4 spaces
Diffstat (limited to 'make/stub_includes')
-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. */ |