summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/geteuid.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-08-18 07:30:16 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-08-18 07:30:16 +0000
commitde85d7be56528bad31359d7e3e3864a610c32c3c (patch)
tree5fd3fa728c0fe443d59ce88627d74555069a28c9 /cpukit/posix/src/geteuid.c
parent2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-de85d7be56528bad31359d7e3e3864a610c32c3c.tar.bz2
2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 449/rtems: * src/getegid.c: Remove (Moved to ../libcsupport/src). * src/geteuid.c: Remove (Moved to ../libcsupport/src). * src/getgid.c: Remove (Moved to ../libcsupport/src). * src/getgroups.c: Remove (Moved to ../libcsupport/src). * src/getlogin.c: Remove (Moved to ../libcsupport/src). * src/getpgrp.c: Remove (Moved to ../libcsupport/src). * src/getpid.c: Remove (Moved to ../libcsupport/src). * src/getppid.c: Remove (Moved to ../libcsupport/src). * src/getuid.c: Remove (Moved to ../libcsupport/src). * src/setpgid.c: Remove (Moved to ../libcsupport/src). * src/setsid.c: Remove (Moved to ../libcsupport/src). * Makefile.am: Reflect changes above
Diffstat (limited to '')
-rw-r--r--cpukit/posix/src/geteuid.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/cpukit/posix/src/geteuid.c b/cpukit/posix/src/geteuid.c
deleted file mode 100644
index 9374999683..0000000000
--- a/cpukit/posix/src/geteuid.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <limits.h>
-#include <string.h>
-#include <sys/types.h>
-
-#include <rtems/system.h>
-#include <rtems/score/object.h>
-#include <rtems/seterr.h>
-
-#include <rtems/userenv.h>
-
-/*
- * MACRO in userenv.h
-uid_t _POSIX_types_Euid = 0;
-*/
-
-/*PAGE
- *
- * 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;
-}