summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-03 14:21:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-03 14:21:44 +0000
commit8eb825ef71812d408c72cd9b1aedee57c1656de3 (patch)
tree05178bb860727ac33c9ae8b0efb0c92dfeeb3bee /c/src/exec/posix/src
parent2002-04-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8eb825ef71812d408c72cd9b1aedee57c1656de3.tar.bz2
2002-04-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/getegid.c: Remove <errno.h>. * src/geteuid.c: Ditto. * src/getgid.c: Ditto. * src/getuid.c: Ditto. * src/getlogin.c: Move <errno.h>.
Diffstat (limited to 'c/src/exec/posix/src')
-rw-r--r--c/src/exec/posix/src/getegid.c1
-rw-r--r--c/src/exec/posix/src/geteuid.c1
-rw-r--r--c/src/exec/posix/src/getgid.c1
-rw-r--r--c/src/exec/posix/src/getlogin.c2
-rw-r--r--c/src/exec/posix/src/getuid.c1
5 files changed, 1 insertions, 5 deletions
diff --git a/c/src/exec/posix/src/getegid.c b/c/src/exec/posix/src/getegid.c
index 8fcec2f6a7..09bb75aeef 100644
--- a/c/src/exec/posix/src/getegid.c
+++ b/c/src/exec/posix/src/getegid.c
@@ -7,7 +7,6 @@
#endif
#include <limits.h>
-#include <errno.h>
#include <string.h>
#include <sys/types.h>
diff --git a/c/src/exec/posix/src/geteuid.c b/c/src/exec/posix/src/geteuid.c
index bf996d3913..9374999683 100644
--- a/c/src/exec/posix/src/geteuid.c
+++ b/c/src/exec/posix/src/geteuid.c
@@ -7,7 +7,6 @@
#endif
#include <limits.h>
-#include <errno.h>
#include <string.h>
#include <sys/types.h>
diff --git a/c/src/exec/posix/src/getgid.c b/c/src/exec/posix/src/getgid.c
index 94af978376..f104a6a039 100644
--- a/c/src/exec/posix/src/getgid.c
+++ b/c/src/exec/posix/src/getgid.c
@@ -7,7 +7,6 @@
#endif
#include <limits.h>
-#include <errno.h>
#include <string.h>
#include <sys/types.h>
diff --git a/c/src/exec/posix/src/getlogin.c b/c/src/exec/posix/src/getlogin.c
index cd394224b2..64ee0b6d02 100644
--- a/c/src/exec/posix/src/getlogin.c
+++ b/c/src/exec/posix/src/getlogin.c
@@ -7,9 +7,9 @@
#endif
#include <limits.h>
-#include <errno.h>
#include <string.h>
#include <sys/types.h>
+#include <errno.h>
#include <rtems/system.h>
#include <rtems/score/object.h>
diff --git a/c/src/exec/posix/src/getuid.c b/c/src/exec/posix/src/getuid.c
index f37ea30960..09cc25e7c1 100644
--- a/c/src/exec/posix/src/getuid.c
+++ b/c/src/exec/posix/src/getuid.c
@@ -7,7 +7,6 @@
#endif
#include <limits.h>
-#include <errno.h>
#include <string.h>
#include <sys/types.h>