From: Andreas Jaeger Date: Wed, 29 Nov 2000 09:24:50 +0000 (+0000) Subject: Remove unused variable. X-Git-Tag: upstream/2.30~10627^2~2125 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=832725ccb4e850412a993ec181526600aefce7d2;p=external%2Fglibc.git Remove unused variable. --- diff --git a/sysdeps/unix/sysv/linux/hppa/brk.c b/sysdeps/unix/sysv/linux/hppa/brk.c index 129c2be..c12608c 100644 --- a/sysdeps/unix/sysv/linux/hppa/brk.c +++ b/sysdeps/unix/sysv/linux/hppa/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/HPPA. - Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -32,7 +32,7 @@ weak_alias (__curbrk, ___brk_addr) int __brk (void *addr) { - void *newbrk, *scratch; + void *newbrk; __curbrk = newbrk = INLINE_SYSCALL(brk, 1, addr);