diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-11-30 20:18:28 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-11-30 20:18:28 +0000 |
commit | b273323fcd4b72d5b1df249d5df008d6f8ec90f1 (patch) | |
tree | ca5c373030a2e79e16e96aba79a7dad32615c34e /newlib | |
parent | f24bad4181391f5a2901cd21b9a57b2c313f3537 (diff) | |
download | newlib-b273323fcd4b72d5b1df249d5df008d6f8ec90f1.zip newlib-b273323fcd4b72d5b1df249d5df008d6f8ec90f1.tar.gz newlib-b273323fcd4b72d5b1df249d5df008d6f8ec90f1.tar.bz2 |
2000-11-30 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/sh/syscalls.c (_link): New stub.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/sys/sh/syscalls.c | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 5b96be7..4c05497 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2000-11-30 Jeff Johnston <jjohnstn@redhat.com> + + * libc/sys/sh/syscalls.c (_link): New stub. + 2000-11-29 Nick Clifton <nickc@redhat.com> * configure.host: Add xscale target. diff --git a/newlib/libc/sys/sh/syscalls.c b/newlib/libc/sys/sh/syscalls.c index 8d04a9e..3626c0a 100644 --- a/newlib/libc/sys/sh/syscalls.c +++ b/newlib/libc/sys/sh/syscalls.c @@ -37,6 +37,12 @@ _close (int file) return __trap34 (SYS_close, file, 0, 0); } +int +_link (char *old, char *new) +{ + return -1; +} + caddr_t _sbrk (int incr) { |