summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/sbrk.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-13 09:24:29 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-13 09:24:29 +0000
commit3c0674cb095262e358703d810e82d8b725e67d7e (patch)
treea09174bc0c136420e944d6478eb2d6af841de7bb /libc/sysdeps/linux/common/sbrk.c
parent7afc8b539d126fb658bd0e1f331a430f852d791f (diff)
Do hidden sbrk
Diffstat (limited to 'libc/sysdeps/linux/common/sbrk.c')
-rw-r--r--libc/sysdeps/linux/common/sbrk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/sbrk.c b/libc/sysdeps/linux/common/sbrk.c
index 028370e99..945adbd6f 100644
--- a/libc/sysdeps/linux/common/sbrk.c
+++ b/libc/sysdeps/linux/common/sbrk.c
@@ -27,7 +27,7 @@ extern int brk (void *addr);
/* Extend the process's data space by INCREMENT.
If INCREMENT is negative, shrink data space by - INCREMENT.
Return start of new space allocated, or -1 for errors. */
-void * sbrk (intptr_t increment)
+void attribute_hidden * __sbrk (intptr_t increment)
{
void *oldbrk;
@@ -44,4 +44,4 @@ void * sbrk (intptr_t increment)
return oldbrk;
}
-
+strong_alias(__sbrk,sbrk)