mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
* sysdeps/unix/sysv/linux/i386/brk.c (__curbrk): Initialize it so it
can be aliased.
This commit is contained in:
parent
807912915b
commit
2a4dcf76ca
@ -1,5 +1,8 @@
|
||||
Mon May 27 10:10:00 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||
|
||||
* sysdeps/unix/sysv/linux/i386/brk.c (__curbrk): Initialize it so it
|
||||
can be aliased.
|
||||
|
||||
* sysdeps/unix/sysv/linux/Makefile [$(subdir)=termios] (headers):
|
||||
Append termio.h.
|
||||
|
||||
|
@ -21,7 +21,8 @@ Cambridge, MA 02139, USA. */
|
||||
#include <unistd.h>
|
||||
#include <sysdep.h>
|
||||
|
||||
void *__curbrk;
|
||||
/* 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
|
||||
|
Loading…
Reference in New Issue
Block a user