diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-05 20:52:47 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-05 20:52:47 +0100 |
commit | 263573cf6e027c41d74d1e225e33f6ec85507938 (patch) | |
tree | e316f80bef48f05365583393454ee1db7f0f91cf /libpthread/linuxthreads/internals.h | |
parent | 9cd6514517f8b385fda74dcdca2b9266c6f7eb14 (diff) |
remove __UCLIBC_ASM_GLOBAL_DIRECTIVE__
.globl can be used for every architecture so remove the define.
Sync with GNU C library.
Diffstat (limited to 'libpthread/linuxthreads/internals.h')
-rw-r--r-- | libpthread/linuxthreads/internals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/internals.h b/libpthread/linuxthreads/internals.h index 68a8b6a75..00c7078ee 100644 --- a/libpthread/linuxthreads/internals.h +++ b/libpthread/linuxthreads/internals.h @@ -475,7 +475,7 @@ extern pid_t __pthread_fork (struct fork_block *b) attribute_hidden; #define asm_handle(name) _asm_handle(name) #define _asm_handle(name) #name -#define ASM_GLOBAL asm_handle(ASM_GLOBAL_DIRECTIVE) +#define ASM_GLOBAL asm_handle(.globl) #define ASM_CANCEL(name) asm_handle(C_SYMBOL_NAME(name)) #if !defined NOT_IN_libc |