summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-04-17 10:55:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-04-17 10:55:40 +0000
commitccb1a6ecbb814dbce0417f344a5506d2803cc301 (patch)
treebf8e473cc559874e57f8fea1da73b5289c026bfe /cpukit/libcsupport
parent2003-04-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-ccb1a6ecbb814dbce0417f344a5506d2803cc301.tar.bz2
Merger from rtems-4-6-branch.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/ChangeLog4
-rw-r--r--cpukit/libcsupport/src/no_posix.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/libcsupport/ChangeLog b/cpukit/libcsupport/ChangeLog
index ef41c427ff..5613c18700 100644
--- a/cpukit/libcsupport/ChangeLog
+++ b/cpukit/libcsupport/ChangeLog
@@ -1,3 +1,7 @@
+2003-04-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/no_posix.c: include <reent.h> instead of <sys/reent.h>
+
2003-04-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 389/rtems
diff --git a/cpukit/libcsupport/src/no_posix.c b/cpukit/libcsupport/src/no_posix.c
index ec601b8fcf..fee2e96de0 100644
--- a/cpukit/libcsupport/src/no_posix.c
+++ b/cpukit/libcsupport/src/no_posix.c
@@ -35,7 +35,7 @@ pid_t getpid(void)
}
#if defined(RTEMS_NEWLIB)
-#include <sys/reent.h>
+#include <reent.h>
pid_t _getpid_r(
struct _reent *ptr
@@ -54,7 +54,7 @@ int kill( pid_t pid, int sig )
}
#if defined(RTEMS_NEWLIB)
-#include <sys/reent.h>
+#include <reent.h>
int _kill_r( struct _reent *ptr, pid_t pid, int sig )
{