_isatty.c

Go to the documentation of this file.
00001 #include <lib.h>
00002 #define isatty _isatty
00003 #define tcgetattr _tcgetattr
00004 #include <termios.h>
00005 #include <unistd.h>
00006 
00007 PUBLIC int isatty(fd)
00008 int fd;
00009 {
00010   struct termios dummy;
00011 
00012   return(tcgetattr(fd, &dummy) == 0);
00013 }

Generated on Fri Apr 14 22:57:27 2006 for minix by  doxygen 1.4.6