From: Ulrich Drepper Date: Sat, 6 Apr 2002 02:32:55 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2-3~903 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c4b4e079e3d3f6d1eb66576d3d6188332eb6619b;p=thirdparty%2Fglibc.git Update. --- diff --git a/ChangeLog b/ChangeLog index ba88a4197a3..1cef2f99174 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,8 +15,6 @@ * sysdeps/unix/sysv/linux/ia64/dl-brk.S: New file. * sysdeps/unix/sysv/linux/powerpc/dl-brk.S: New file. * sysdeps/unix/sysv/linux/sparc/sparc64/dl-brk.S: New file. - * sysdeps/unix/sysv/linux/i386/dl-brk.c: Remove. - * sysdeps/unix/sysv/linux/i386/dl-sbrk.c: Remove. 2002-04-03 Andreas Schwab diff --git a/sysdeps/unix/sysv/linux/i386/dl-brk.c b/sysdeps/unix/sysv/linux/i386/dl-brk.c new file mode 100644 index 00000000000..c37cdfec331 --- /dev/null +++ b/sysdeps/unix/sysv/linux/i386/dl-brk.c @@ -0,0 +1,5 @@ +/* We can use the normal code but we also know the __curbrk is not exported + from ld.so. */ +extern void *__curbrk attribute_hidden; + +#include diff --git a/sysdeps/unix/sysv/linux/i386/dl-sbrk.c b/sysdeps/unix/sysv/linux/i386/dl-sbrk.c new file mode 100644 index 00000000000..4713a92694e --- /dev/null +++ b/sysdeps/unix/sysv/linux/i386/dl-sbrk.c @@ -0,0 +1,5 @@ +/* We can use the normal code but we also know the __curbrk is not exported + from ld.so. */ +extern void *__curbrk attribute_hidden; + +#include