summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/isatty_r.c
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-12-09 17:55:17 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-09 17:55:17 -0500
commitbcd0ea64091d4c360b48cfabbfb94b4f562a9eaa (patch)
treec19e154cfb32d246159933209e1c404be752e8e6 /cpukit/libcsupport/src/isatty_r.c
parentlibcsupport: Fix documentation (diff)
downloadrtems-bcd0ea64091d4c360b48cfabbfb94b4f562a9eaa.tar.bz2
libcsupport: Doxygen enhancement task #2
http://www.google-melange.com/gci/task/view/google/gci2012/8017203
Diffstat (limited to 'cpukit/libcsupport/src/isatty_r.c')
-rw-r--r--cpukit/libcsupport/src/isatty_r.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/cpukit/libcsupport/src/isatty_r.c b/cpukit/libcsupport/src/isatty_r.c
index 56751dc008..13ba6b4b34 100644
--- a/cpukit/libcsupport/src/isatty_r.c
+++ b/cpukit/libcsupport/src/isatty_r.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief Test for a Terminal Device
+ * @ingroup libcsupport
+ */
+
/*
* COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
@@ -11,14 +18,11 @@
#include "config.h"
#endif
-/*
- * _isatty_r
- *
- * This is the Newlib dependent reentrant version of isatty().
- */
-
#if defined(RTEMS_NEWLIB) && !defined(HAVE__ISATTY_R)
+ /**
+ * This is the Newlib dependent reentrant version of isatty().
+ */
#include <unistd.h>
#include <reent.h>
#include <sys/stat.h>