summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/write.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/write.c')
-rw-r--r--cpukit/libcsupport/src/write.c20
1 files changed, 12 insertions, 8 deletions
diff --git a/cpukit/libcsupport/src/write.c b/cpukit/libcsupport/src/write.c
index dc1255867d..e96e938b0b 100644
--- a/cpukit/libcsupport/src/write.c
+++ b/cpukit/libcsupport/src/write.c
@@ -1,6 +1,11 @@
-/*
- * write() - POSIX 1003.1b 6.4.2 - Write to a File
+/**
+ * @file
*
+ * @brief Write to a File
+ * @ingroup libcsupport
+ */
+
+/*
* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
@@ -16,13 +21,12 @@
#include <rtems/libio_.h>
#include <rtems/seterr.h>
-/*
- * write
- *
- * This routine writes count bytes from from buffer pointed to by buffer
- * to the file associated with the open file descriptor, fildes.
+/**
+ * POSIX 1003.1b 6.4.2 - Write to a File
+ *
+ * This routine writes count bytes from from buffer pointed to by buffer
+ * to the file associated with the open file descriptor, fildes.
*/
-
ssize_t write(
int fd,
const void *buffer,