14 lines
200 B
C
14 lines
200 B
C
/* $Source: /cvsroot/tack/Ack/plat/linux386/libsys/isatty.c,v $
|
|
* $State: Exp $
|
|
* $Revision: 1.1 $
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
|
|
int isatty(int fd)
|
|
{
|
|
return 0;
|
|
}
|