* libc/sys/sh/syscalls.c (_isatty): New.
This commit is contained in:
@ -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>
|
2008-01-21 Neal H. Walfield <neal@gnu.org>
|
||||||
|
|
||||||
* Makefile.am (crt1.o): Use correct source.
|
* Makefile.am (crt1.o): Use correct source.
|
||||||
|
@ -99,6 +99,13 @@ isatty (fd)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_isatty (fd)
|
||||||
|
int fd;
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
_exit (n)
|
_exit (n)
|
||||||
{
|
{
|
||||||
return __trap34 (SYS_exit, n, 0, 0);
|
return __trap34 (SYS_exit, n, 0, 0);
|
||||||
|
Reference in New Issue
Block a user