11 lines
169 B
C
Raw Normal View History

2019-07-24 17:03:26 +08:00
/* See LICENSE of license details. */
#include <unistd.h>
int _isatty(int fd) {
if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
return 1;
return 0;
}