Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libgloss/ChangeLog4
-rw-r--r--libgloss/libnosys/sbrk.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog
index a9df16e78..8a2880637 100644
--- a/libgloss/ChangeLog
+++ b/libgloss/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-26 Jeff Johnston <jjohnstn@redhat.com>
+
+ * libnosys/sbrk.c: Add include of <_syslist.h>.
+
2004-05-05 Richard Sandiford <rsandifo@redhat.com>
* mips/array.ld, mips/cfe.ld, mips/ddb-kseg0.ld, mips/ddb.ld,
diff --git a/libgloss/libnosys/sbrk.c b/libgloss/libnosys/sbrk.c
index 8c1c971aa..841c692af 100644
--- a/libgloss/libnosys/sbrk.c
+++ b/libgloss/libnosys/sbrk.c
@@ -1,5 +1,7 @@
/* Version of sbrk for no operating system. */
+#include <_syslist.h>
+
void *
_sbrk (incr)
int incr;