summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/libio_.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-12-09 14:26:02 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-12-09 14:26:02 +0100
commit7e731815e5a9f6a3744d1b25fe896ce5ddecc763 (patch)
tree49a55d2208a14c20caf7505021901adeaa81f250 /cpukit/libcsupport/include/rtems/libio_.h
parentFilesystem: Revert documentation change (diff)
downloadrtems-7e731815e5a9f6a3744d1b25fe896ce5ddecc763.tar.bz2
libcsupport: Fix documentation
Diffstat (limited to 'cpukit/libcsupport/include/rtems/libio_.h')
-rw-r--r--cpukit/libcsupport/include/rtems/libio_.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio_.h b/cpukit/libcsupport/include/rtems/libio_.h
index 941efb785b..98f6f63d4d 100644
--- a/cpukit/libcsupport/include/rtems/libio_.h
+++ b/cpukit/libcsupport/include/rtems/libio_.h
@@ -19,11 +19,6 @@
#ifndef _RTEMS_RTEMS_LIBIO__H
#define _RTEMS_RTEMS_LIBIO__H
-/**
- * @defgroup libio Internal Interface
- */
-/**@{*/
-
#include <errno.h>
#include <rtems.h>
@@ -34,6 +29,14 @@
extern "C" {
#endif
+/**
+ * @defgroup LibIOInternal IO Internal Library
+ *
+ * @brief Internal IO library API and implementation.
+ *
+ * @{
+ */
+
#define RTEMS_FILESYSTEM_SYMLOOP_MAX 32
/*
@@ -541,9 +544,6 @@ int rtems_filesystem_mknod(
dev_t dev
);
-/**
- * @brief POSIX 1003.1b - 5.2.1 - Change Current Working Directory
- */
int rtems_filesystem_chdir( rtems_filesystem_location_info_t *loc );
int rtems_filesystem_chown(
@@ -808,9 +808,11 @@ static inline bool rtems_filesystem_is_parent_directory(
return tokenlen == 2 && token [0] == '.' && token [1] == '.';
}
+/** @} */
+
#ifdef __cplusplus
}
#endif
-/**@}*/
+
#endif
/* end of include file */