summaryrefslogtreecommitdiffstats
path: root/newlib/libc/syscalls/sysisatty.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/syscalls/sysisatty.c')
-rw-r--r--newlib/libc/syscalls/sysisatty.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/newlib/libc/syscalls/sysisatty.c b/newlib/libc/syscalls/sysisatty.c
deleted file mode 100644
index 5a6b8d455..000000000
--- a/newlib/libc/syscalls/sysisatty.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* connector for isatty */
-
-#include <reent.h>
-#include <unistd.h>
-
-int
-_DEFUN (isatty, (fd),
- int fd)
-{
-#ifdef REENTRANT_SYSCALLS_PROVIDED
- return _isatty_r (_REENT, fd);
-#else
- return _isatty (fd);
-#endif
-}