From b273323fcd4b72d5b1df249d5df008d6f8ec90f1 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Thu, 30 Nov 2000 20:18:28 +0000 Subject: [PATCH] 2000-11-30 Jeff Johnston * libc/sys/sh/syscalls.c (_link): New stub. --- newlib/ChangeLog | 4 ++++ newlib/libc/sys/sh/syscalls.c | 6 ++++++ 2 files changed, 10 insertions(+) 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) {