diff options
author | Andreas Jaeger <aj@suse.de> | 2000-11-29 09:24:50 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-11-29 09:24:50 +0000 |
commit | f4027662031b4d9b2f70d354d1e166cd4a35e202 (patch) | |
tree | 4c2242491d2dcb29fd1c55367e28ca38cd2efc93 /sysdeps | |
parent | 20bb288327254c60dcf7f28ad3ea22c48cffcc58 (diff) | |
download | glibc-f4027662031b4d9b2f70d354d1e166cd4a35e202.zip glibc-f4027662031b4d9b2f70d354d1e166cd4a35e202.tar.gz glibc-f4027662031b4d9b2f70d354d1e166cd4a35e202.tar.bz2 |
Remove unused variable.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/hppa/brk.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |