summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/readlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/readlink.c')
-rw-r--r--cpukit/libcsupport/src/readlink.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/readlink.c b/cpukit/libcsupport/src/readlink.c
index 2cafcca10d..4abc68a955 100644
--- a/cpukit/libcsupport/src/readlink.c
+++ b/cpukit/libcsupport/src/readlink.c
@@ -1,6 +1,11 @@
-/*
- * readlink() - POSIX 1003.1b - X.X.X - XXX
+/**
+ * @file
*
+ * @brief Read Value of a Symbolic Link
+ * @ingroup libcsupport
+ */
+
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -17,6 +22,9 @@
#include <rtems/libio_.h>
+/**
+ * POSIX 1003.1b - X.X.X - XXX
+ */
ssize_t readlink( const char *path, char *buf, size_t bufsize )
{
ssize_t rv = 0;