11 lines
169 B
C
11 lines
169 B
C
/* See LICENSE of license details. */
|
|
|
|
#include <unistd.h>
|
|
|
|
int _isatty(int fd) {
|
|
if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|