summaryrefslogtreecommitdiff
path: root/os/src/isatty.c
blob: 051284fefab71d2d6a6010e6a274acd547bd4cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <unistd.h>
#include <reent.h>
#include <errno.h>
#include "fio.h"

int _isatty_r(struct _reent * reent, int fd) {
    if (!fio_is_open(fd)) {
        reent->_errno = EBADF;
        return 0;
    }
    reent->_errno = EINVAL;
    return 0;
}