From 8fbd519e538ddedcbafe5f6732b16d5d8a1b7bf4 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Fri, 28 Jan 2011 23:41:41 +0100 Subject: File IO embryo. --- os/src/isatty.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'os/src/isatty.c') diff --git a/os/src/isatty.c b/os/src/isatty.c index baf78e4..69fef64 100644 --- a/os/src/isatty.c +++ b/os/src/isatty.c @@ -1,8 +1,15 @@ #include #include +#include +#include "fio.h" #include "osdebug.h" -int _isatty_r(struct _reent * ptr, int fildes) { - DBGOUT("_isatty_r(%p, %d)\r\n", ptr, fildes); +int _isatty_r(struct _reent * reent, int fd) { + DBGOUT("_isatty_r(%p, %d)\r\n", reent, fd); +// if (!fio_is_open(fd)) { +// reent->_errno = EBADF; +// return 0; +// } +// reent->_errno = EINVAL; return 0; } -- cgit v1.2.3