diff options
Diffstat (limited to 'libc/sysdeps/linux/cris/brk.c')
-rw-r--r-- | libc/sysdeps/linux/cris/brk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/cris/brk.c b/libc/sysdeps/linux/cris/brk.c index 0bc08d5e6..10965d3b9 100644 --- a/libc/sysdeps/linux/cris/brk.c +++ b/libc/sysdeps/linux/cris/brk.c @@ -7,7 +7,7 @@ extern void * __curbrk; extern int __init_brk (void); -int brk(void * end_data_seg) +int attribute_hidden __brk(void * end_data_seg) { if (__init_brk () == 0) { /* @@ -29,3 +29,4 @@ int brk(void * end_data_seg) return -1; } +strong_alias(__brk,brk) |