summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-01-27 13:32:25 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-01-27 13:32:25 +0000
commitefec4b0f6059523167460a012e4a47c1b2be0a08 (patch)
tree3400d28809d860f07a639e93c5c574194ff8186b
parent2005-01-27 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-efec4b0f6059523167460a012e4a47c1b2be0a08.tar.bz2
2005-01-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* libcsupport/src/lstat.c, libcsupport/src/readdir_r.c: Include config.h.
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libcsupport/src/lstat.c4
-rw-r--r--cpukit/libcsupport/src/readdir_r.c4
3 files changed, 13 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 71af185c91..f69102fa24 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2005-01-27 Ralf Corsepius <ralf.corsepius@rtems.org>
+ * libcsupport/src/lstat.c, libcsupport/src/readdir_r.c:
+ Include config.h.
+
+2005-01-27 Ralf Corsepius <ralf.corsepius@rtems.org>
+
* libmisc/untar/untar.h: New prototype to eleminate warnings.
* libmisc/untar/untar.c: Cosmetics, add symlinks.
diff --git a/cpukit/libcsupport/src/lstat.c b/cpukit/libcsupport/src/lstat.c
index 66dca78338..d51296cbe9 100644
--- a/cpukit/libcsupport/src/lstat.c
+++ b/cpukit/libcsupport/src/lstat.c
@@ -11,6 +11,10 @@
* $Id$
*/
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define _STAT_NAME lstat
#define _STAT_R_NAME _lstat_r
#define _STAT_FOLLOW_LINKS FALSE
diff --git a/cpukit/libcsupport/src/readdir_r.c b/cpukit/libcsupport/src/readdir_r.c
index 9ddb84f97c..7d598cd7e3 100644
--- a/cpukit/libcsupport/src/readdir_r.c
+++ b/cpukit/libcsupport/src/readdir_r.c
@@ -4,6 +4,10 @@
* $Id$
*/
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>