Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 6 Apr 2002 02:32:55 +0000 (02:32 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 6 Apr 2002 02:32:55 +0000 (02:32 +0000)
ChangeLog
sysdeps/unix/sysv/linux/i386/dl-brk.c [new file with mode: 0644]
sysdeps/unix/sysv/linux/i386/dl-sbrk.c [new file with mode: 0644]

index ba88a41..1cef2f9 100644 (file)
--- 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  <schwab@suse.de>
 
diff --git a/sysdeps/unix/sysv/linux/i386/dl-brk.c b/sysdeps/unix/sysv/linux/i386/dl-brk.c
new file mode 100644 (file)
index 0000000..c37cdfe
--- /dev/null
@@ -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 <brk.c>
diff --git a/sysdeps/unix/sysv/linux/i386/dl-sbrk.c b/sysdeps/unix/sysv/linux/i386/dl-sbrk.c
new file mode 100644 (file)
index 0000000..4713a92
--- /dev/null
@@ -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 <sbrk.c>