summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/sh/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/sh/syscalls.c')
-rw-r--r--newlib/libc/sys/sh/syscalls.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/newlib/libc/sys/sh/syscalls.c b/newlib/libc/sys/sh/syscalls.c
index f8ed7365f..614b67e9e 100644
--- a/newlib/libc/sys/sh/syscalls.c
+++ b/newlib/libc/sys/sh/syscalls.c
@@ -99,6 +99,13 @@ isatty (fd)
return 1;
}
+_isatty (fd)
+ int fd;
+{
+ return 1;
+}
+
+
_exit (n)
{
return __trap34 (SYS_exit, n, 0, 0);