diff options
Diffstat (limited to 'libc/sysdeps/linux/sh/brk.c')
-rw-r--r-- | libc/sysdeps/linux/sh/brk.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/sh/brk.c b/libc/sysdeps/linux/sh/brk.c index 2406904a3..d6063fc27 100644 --- a/libc/sysdeps/linux/sh/brk.c +++ b/libc/sysdeps/linux/sh/brk.c @@ -7,9 +7,9 @@ extern void * __curbrk; extern int __init_brk (void); -extern void *_brk(void *ptr); +extern void *_brk(void *ptr) attribute_hidden; -int brk(void * end_data_seg) +int attribute_hidden __brk(void * end_data_seg) { if (__init_brk () == 0) { @@ -20,3 +20,4 @@ int brk(void * end_data_seg) } return -1; } +strong_alias(__brk,brk) |