summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/sbrk.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-14 00:58:03 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-14 00:58:03 +0000
commitaf0172162f7c653cad6a11ed1c1a5459bc154465 (patch)
tree70031dad1e7286d58762da7b9e3d3f93d043c278 /libc/sysdeps/linux/common/sbrk.c
parentc8609543a9a8bf6559c2931dbbef6b3c41b3fbf2 (diff)
hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing headers, other jump relocs removed
Diffstat (limited to 'libc/sysdeps/linux/common/sbrk.c')
-rw-r--r--libc/sysdeps/linux/common/sbrk.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/common/sbrk.c b/libc/sysdeps/linux/common/sbrk.c
index d8507335b..bdc8c68a7 100644
--- a/libc/sysdeps/linux/common/sbrk.c
+++ b/libc/sysdeps/linux/common/sbrk.c
@@ -19,29 +19,31 @@
#include <unistd.h>
#include <errno.h>
+libc_hidden_proto(brk)
+
/* Defined in brk.c. */
extern void *__curbrk;
-extern int __brk (void *addr) attribute_hidden;
/* 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 attribute_hidden * __sbrk (intptr_t increment)
+void * sbrk (intptr_t increment)
{
void *oldbrk;
if (__curbrk == NULL)
- if (__brk (0) < 0) /* Initialize the break. */
+ if (brk (0) < 0) /* Initialize the break. */
return (void *) -1;
if (increment == 0)
return __curbrk;
oldbrk = __curbrk;
- if (__brk (oldbrk + increment) < 0)
+ if (brk (oldbrk + increment) < 0)
return (void *) -1;
return oldbrk;
}
-strong_alias(__sbrk,sbrk)
+libc_hidden_proto(sbrk)
+libc_hidden_def(sbrk)