summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/isatty_r.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-06 15:27:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-06 15:27:55 +0000
commit03e3f92aa43425ff1b30171572f5084e78995301 (patch)
tree11dab1374718754eec5b8eb301e1af9c4b25e046 /cpukit/libcsupport/src/isatty_r.c
parentUpdate. (diff)
downloadrtems-03e3f92aa43425ff1b30171572f5084e78995301.tar.bz2
2009-05-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/Makefile.am: * libcsupport/src/isatty_r.c: New file.
Diffstat (limited to 'cpukit/libcsupport/src/isatty_r.c')
-rw-r--r--cpukit/libcsupport/src/isatty_r.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/isatty_r.c b/cpukit/libcsupport/src/isatty_r.c
new file mode 100644
index 0000000000..105acc67d2
--- /dev/null
+++ b/cpukit/libcsupport/src/isatty_r.c
@@ -0,0 +1,34 @@
+/*
+ * COPYRIGHT (c) 1989-2009.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+/*
+ * _isatty_r
+ *
+ * This is the Newlib dependent reentrant version of isatty().
+ */
+
+#if defined(RTEMS_NEWLIB)
+
+#include <reent.h>
+#include <sys/stat.h>
+
+int _isatty_r(
+ struct _reent *ptr,
+ int fd
+)
+{
+ return isatty( fd );
+}
+#endif