* libc/sys/sh/syscalls.c (_isatty): New.
This commit is contained in:
parent
cece11c511
commit
226f5a32da
|
@ -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.
|
||||
|
|
|
@ -99,6 +99,13 @@ isatty (fd)
|
|||
return 1;
|
||||
}
|
||||
|
||||
_isatty (fd)
|
||||
int fd;
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
_exit (n)
|
||||
{
|
||||
return __trap34 (SYS_exit, n, 0, 0);
|
||||
|
|
Loading…
Reference in New Issue