diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 5b96be76a..4c0549724 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2000-11-30 Jeff Johnston + + * libc/sys/sh/syscalls.c (_link): New stub. + 2000-11-29 Nick Clifton * configure.host: Add xscale target. diff --git a/newlib/libc/sys/sh/syscalls.c b/newlib/libc/sys/sh/syscalls.c index 8d04a9ee5..3626c0a44 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) {