summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/umask.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/umask.c')
-rw-r--r--cpukit/libcsupport/src/umask.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/umask.c b/cpukit/libcsupport/src/umask.c
index d9b5580dba..1a5daa51cd 100644
--- a/cpukit/libcsupport/src/umask.c
+++ b/cpukit/libcsupport/src/umask.c
@@ -1,6 +1,11 @@
-/*
- * umask() - POSIX 1003.1b 5.3.3 - Set File Creation Mask
+/**
+ * @file
*
+ * @brief Set File Creation Mask
+ * @ingroup libcsupport
+ */
+
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -19,6 +24,9 @@
#include <rtems/libio_.h>
+/**
+ * POSIX 1003.1b 5.3.3 - Set File Creation Mask
+ */
mode_t umask( mode_t cmask )
{
mode_t old_mask;