[git commit] brk.c: remove libc_hidden_proto, always_inline syscall

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Fri Jun 15 12:00:39 UTC 2012


commit: http://git.uclibc.org/uClibc/commit/?id=d5f8c6ddc447d1e6b2a7cd2acc311b352c3ab9ac
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 libc/sysdeps/linux/common/brk.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/libc/sysdeps/linux/common/brk.c b/libc/sysdeps/linux/common/brk.c
index 18836ba..77a26c0 100644
--- a/libc/sysdeps/linux/common/brk.c
+++ b/libc/sysdeps/linux/common/brk.c
@@ -8,10 +8,8 @@
 #include <unistd.h>
 #include <sys/syscall.h>
 
-libc_hidden_proto(brk)
-
 #define __NR___syscall_brk __NR_brk
-static inline _syscall1(void *, __syscall_brk, void *, end)
+static __always_inline _syscall1(void *, __syscall_brk, void *, end)
 
 /* This must be initialized data because commons can't have aliases.  */
 void * __curbrk attribute_hidden = 0;


More information about the uClibc-cvs mailing list