summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/geteuid.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/geteuid.c')
-rw-r--r--cpukit/libcsupport/src/geteuid.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/geteuid.c b/cpukit/libcsupport/src/geteuid.c
index 753dabf997..bc4ee75601 100644
--- a/cpukit/libcsupport/src/geteuid.c
+++ b/cpukit/libcsupport/src/geteuid.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief Get Real User, Effective User, Ral Group, and Effective Group IDs
+ * @ingroup libcsupport
+ */
+
#if HAVE_CONFIG_H
#include "config.h"
#endif
@@ -15,11 +22,10 @@
uid_t _POSIX_types_Euid = 0;
*/
-/*
+/**
* 4.2.1 Get Real User, Effective User, Ral Group, and Effective Group IDs,
* P1003.1b-1993, p. 84
*/
-
uid_t geteuid( void )
{
return _POSIX_types_Euid;