Remove __brk_addr alias, avoid warning.
authorAndreas Jaeger <aj@suse.de>
Mon, 26 Nov 2001 08:37:35 +0000 (08:37 +0000)
committerAndreas Jaeger <aj@suse.de>
Mon, 26 Nov 2001 08:37:35 +0000 (08:37 +0000)
sysdeps/unix/sysv/linux/hppa/brk.c

index b534b17..a4b4df2 100644 (file)
@@ -1,5 +1,5 @@
 /* brk system call for Linux/HPPA.
-   Copyright (C) 1995, 1996, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1995, 1996, 2000, 2001 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
 /* This must be initialized data because commons can't have aliases.  */
 void *__curbrk = 0;
 
-/* Old braindamage in GCC's crtstuff.c requires this symbol in an attempt
-   to work around different old braindamage in the old Linux ELF dynamic
-   linker.  */
-weak_alias (__curbrk, ___brk_addr)
-
 int
 __brk (void *addr)
 {
   void *newbrk;
 
-  __curbrk = newbrk = INLINE_SYSCALL(brk, 1, addr);
+  __curbrk = newbrk = (void *) INLINE_SYSCALL (brk, 1, addr);
 
   if (newbrk < addr)
     {