about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-20 19:14:55 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-20 19:14:55 +0000
commit7e791f32c88ea7f6800c6e58cc96b0fab09aa9a9 (patch)
treef08befcc53724417607ab58dcd1cc3538f5c6d4f /sysdeps
parent505b474df41fe05012a2e6bac671f002e83419b5 (diff)
downloadglibc-7e791f32c88ea7f6800c6e58cc96b0fab09aa9a9.tar.gz
glibc-7e791f32c88ea7f6800c6e58cc96b0fab09aa9a9.tar.xz
glibc-7e791f32c88ea7f6800c6e58cc96b0fab09aa9a9.zip
Update.
2002-12-20  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/i386/brk.c (__brk): Use INTERNAL_SYSCALL
	instead of INLINE_SYSCALL.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/i386/brk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/brk.c b/sysdeps/unix/sysv/linux/i386/brk.c
index d99e7256d4..9219e1a48f 100644
--- a/sysdeps/unix/sysv/linux/i386/brk.c
+++ b/sysdeps/unix/sysv/linux/i386/brk.c
@@ -36,7 +36,7 @@ __brk (void *addr)
 {
   void *__unbounded newbrk;
 
-  newbrk = INLINE_SYSCALL (brk, 1, __ptrvalue (addr));
+  newbrk = INTERNAL_SYSCALL (brk, 1, __ptrvalue (addr));
 
   __curbrk = newbrk;