summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/posix/ChangeLog8
-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
-rw-r--r--cpukit/posix/ChangeLog8
-rw-r--r--cpukit/posix/src/getegid.c1
-rw-r--r--cpukit/posix/src/geteuid.c1
-rw-r--r--cpukit/posix/src/getgid.c1
-rw-r--r--cpukit/posix/src/getlogin.c2
-rw-r--r--cpukit/posix/src/getuid.c1
12 files changed, 18 insertions, 10 deletions
diff --git a/c/src/exec/posix/ChangeLog b/c/src/exec/posix/ChangeLog
index 97e75ea2de..ed7038e077 100644
--- a/c/src/exec/posix/ChangeLog
+++ b/c/src/exec/posix/ChangeLog
@@ -1,3 +1,11 @@
+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>.
+
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:
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>
diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog
index 97e75ea2de..ed7038e077 100644
--- a/cpukit/posix/ChangeLog
+++ b/cpukit/posix/ChangeLog
@@ -1,3 +1,11 @@
+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>.
+
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:
diff --git a/cpukit/posix/src/getegid.c b/cpukit/posix/src/getegid.c
index 8fcec2f6a7..09bb75aeef 100644
--- a/cpukit/posix/src/getegid.c
+++ b/cpukit/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/cpukit/posix/src/geteuid.c b/cpukit/posix/src/geteuid.c
index bf996d3913..9374999683 100644
--- a/cpukit/posix/src/geteuid.c
+++ b/cpukit/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/cpukit/posix/src/getgid.c b/cpukit/posix/src/getgid.c
index 94af978376..f104a6a039 100644
--- a/cpukit/posix/src/getgid.c
+++ b/cpukit/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/cpukit/posix/src/getlogin.c b/cpukit/posix/src/getlogin.c
index cd394224b2..64ee0b6d02 100644
--- a/cpukit/posix/src/getlogin.c
+++ b/cpukit/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/cpukit/posix/src/getuid.c b/cpukit/posix/src/getuid.c
index f37ea30960..09cc25e7c1 100644
--- a/cpukit/posix/src/getuid.c
+++ b/cpukit/posix/src/getuid.c
@@ -7,7 +7,6 @@
#endif
#include <limits.h>
-#include <errno.h>
#include <string.h>
#include <sys/types.h>