* libc/sys/sh/syscalls.c (_isatty): New.

This commit is contained in:
DJ Delorie
2008-01-22 00:24:45 +00:00
parent cece11c511
commit 226f5a32da
2 changed files with 11 additions and 0 deletions

View File

@ -99,6 +99,13 @@ isatty (fd)
return 1;
}
_isatty (fd)
int fd;
{
return 1;
}
_exit (n)
{
return __trap34 (SYS_exit, n, 0, 0);