7 lines
100 B
C
7 lines
100 B
C
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
int isatty (int fd) {
|
|
return 1;
|
|
}
|