* 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

@ -1,3 +1,7 @@
2008-01-21 DJ Delorie <dj@redhat.com>
* libc/sys/sh/syscalls.c (_isatty): New.
2008-01-21 Neal H. Walfield <neal@gnu.org>
* Makefile.am (crt1.o): Use correct source.

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);