source: trunk/libs/newlib/src/libgloss/sparc/libsys/isatty.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 239 bytes
Line 
1/* isatty.c */
2
3/* Dumb implementation so programs will at least run.  */
4
5#include <sys/stat.h>
6
7int
8isatty (int fd)
9{
10  struct stat buf;
11
12  if (fstat (fd, &buf) < 0)
13    return 0;
14  if (S_ISCHR (buf.st_mode))
15    return 1;
16  return 0;
17}
Note: See TracBrowser for help on using the repository browser.