diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-08-12 18:06:01 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-08-12 18:06:01 +0000 |
commit | 2c34141c56ae31498751b0cfedc16a0d0c7f0c34 (patch) | |
tree | 9c66e3ed33f0a9a140661f389a144f6ca20174a0 /libgloss | |
parent | c86c10b803a309d887fd8d02160fe118ab31b531 (diff) | |
download | newlib-2c34141c56ae31498751b0cfedc16a0d0c7f0c34.zip newlib-2c34141c56ae31498751b0cfedc16a0d0c7f0c34.tar.gz newlib-2c34141c56ae31498751b0cfedc16a0d0c7f0c34.tar.bz2 |
2003-08-12 Jeff Johnston <jjohnstn@redhat.com>
* i386/cygmon-salib.c (unlink): New stub.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 4 | ||||
-rw-r--r-- | libgloss/i386/cygmon-salib.c | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index e7fd613..d8ed896 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +2003-08-12 Jeff Johnston <jjohnstn@redhat.com> + + * i386/cygmon-salib.c (unlink): New stub. + 2003-08-08 Mark Salter <msalter@redhat.com> * i386/cygmon.ld: Add 4 byte alignment to __CTOR_LIST__ diff --git a/libgloss/i386/cygmon-salib.c b/libgloss/i386/cygmon-salib.c index 1fd29ca..466045d 100644 --- a/libgloss/i386/cygmon-salib.c +++ b/libgloss/i386/cygmon-salib.c @@ -64,6 +64,12 @@ isatty (int i) return i<3; } +int unlink (const char *p) +{ + return -1; +} + + char * sbrk (int amt) { |