aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/sys/sh
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/sh')
-rw-r--r--newlib/libc/sys/sh/syscalls.c6
1 files changed, 6 insertions, 0 deletions
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)
{