From 3c0674cb095262e358703d810e82d8b725e67d7e Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 13 Dec 2005 09:24:29 +0000 Subject: Do hidden sbrk --- libc/sysdeps/linux/common/sbrk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common') 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) -- cgit v1.2.3