9 lines
94 B
C
9 lines
94 B
C
|
#include <stdlib.h>
|
||
|
#include <errno.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int isatty(int fd)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|