summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/rdos/isatty.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/rdos/isatty.c')
-rw-r--r--newlib/libc/sys/rdos/isatty.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/newlib/libc/sys/rdos/isatty.c b/newlib/libc/sys/rdos/isatty.c
new file mode 100644
index 000000000..9862a87f8
--- /dev/null
+++ b/newlib/libc/sys/rdos/isatty.c
@@ -0,0 +1,9 @@
+#include "config.h"
+#include <_ansi.h>
+#include <_syslist.h>
+#include <errno.h>
+
+int isatty(int file)
+{
+ return 0;
+}