summaryrefslogtreecommitdiff
path: root/os/src/isatty.c
blob: baf78e4598d07a7a1fab70dd13846f1404200b32 (plain)
1
2
3
4
5
6
7
8
#include <unistd.h>
#include <reent.h>
#include "osdebug.h"

int _isatty_r(struct _reent * ptr, int fildes) {
    DBGOUT("_isatty_r(%p, %d)\r\n", ptr, fildes);
    return 0;
}