diff options
author | DJ Delorie <dj@redhat.com> | 2008-01-22 00:24:45 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2008-01-22 00:24:45 +0000 |
commit | 226f5a32da9ff0311c3513f48167fce52d591632 (patch) | |
tree | 7b0d4b5a7364759faac1d7f967aa7470fda28ec7 /newlib/libc | |
parent | cece11c51136d98591c93c52e8ec44839cc719dd (diff) | |
download | cygnal-226f5a32da9ff0311c3513f48167fce52d591632.tar.gz cygnal-226f5a32da9ff0311c3513f48167fce52d591632.tar.bz2 cygnal-226f5a32da9ff0311c3513f48167fce52d591632.zip |
* libc/sys/sh/syscalls.c (_isatty): New.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/sys/sh/syscalls.c | 7 |
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); |