1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
2002-12-20  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/i386/brk.c (__brk): Use INTERNAL_SYSCALL
	instead of INLINE_SYSCALL.
This commit is contained in:
Ulrich Drepper
2002-12-20 19:14:55 +00:00
parent 505b474df4
commit 7e791f32c8
2 changed files with 6 additions and 1 deletions

View File

@@ -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;