isatty.c 169 字节
Newer Older
T
tyustli 已提交
1 2 3 4 5 6 7 8 9 10
/* See LICENSE of license details. */

#include <unistd.h>

int _isatty(int fd) {
    if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
        return 1;

    return 0;
}