summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/libfs/ChangeLog8
-rw-r--r--c/src/exec/libfs/src/imfs/imfs_getchild.c1
-rw-r--r--c/src/exec/libfs/src/imfs/imfs_gtkn.c2
-rw-r--r--c/src/exec/libfs/src/imfs/ioman.c1
-rw-r--r--c/src/exec/libfs/src/imfs/linearfile.c1
-rw-r--r--c/src/exec/libfs/src/imfs/memfile.c1
-rw-r--r--c/src/libfs/ChangeLog8
-rw-r--r--c/src/libfs/src/imfs/imfs_getchild.c1
-rw-r--r--c/src/libfs/src/imfs/imfs_gtkn.c2
-rw-r--r--c/src/libfs/src/imfs/ioman.c1
-rw-r--r--c/src/libfs/src/imfs/linearfile.c1
-rw-r--r--c/src/libfs/src/imfs/memfile.c1
-rw-r--r--cpukit/libfs/ChangeLog8
-rw-r--r--cpukit/libfs/src/imfs/imfs_getchild.c1
-rw-r--r--cpukit/libfs/src/imfs/imfs_gtkn.c2
-rw-r--r--cpukit/libfs/src/imfs/ioman.c1
-rw-r--r--cpukit/libfs/src/imfs/linearfile.c1
-rw-r--r--cpukit/libfs/src/imfs/memfile.c1
18 files changed, 42 insertions, 0 deletions
diff --git a/c/src/exec/libfs/ChangeLog b/c/src/exec/libfs/ChangeLog
index af33106b30..2fd4267714 100644
--- a/c/src/exec/libfs/ChangeLog
+++ b/c/src/exec/libfs/ChangeLog
@@ -1,3 +1,11 @@
+2002-04-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/imfs/imfs_getchild.c: include <string.h>.
+ * src/imfs/imfs_gtkn.c: Include <string.h>.
+ * src/imfs/ioman.c: Include <string.h>.
+ * src/imfs/linearfile.c: Include <string.h>.
+ * src/imfs/memfile.c: Include <string.h>.
+
2001-04-04 Joel Sherrill <joel@OARcorp.com>
* src/dosfs/Makefile.am: Per PR129 do not install as many files
diff --git a/c/src/exec/libfs/src/imfs/imfs_getchild.c b/c/src/exec/libfs/src/imfs/imfs_getchild.c
index a539fe7def..8b173afc91 100644
--- a/c/src/exec/libfs/src/imfs/imfs_getchild.c
+++ b/c/src/exec/libfs/src/imfs/imfs_getchild.c
@@ -19,6 +19,7 @@
#include <errno.h>
#include <assert.h>
+#include <string.h>
#include "imfs.h"
static char dotname[2] = ".";
diff --git a/c/src/exec/libfs/src/imfs/imfs_gtkn.c b/c/src/exec/libfs/src/imfs/imfs_gtkn.c
index f635ab3760..c5e51c182b 100644
--- a/c/src/exec/libfs/src/imfs/imfs_gtkn.c
+++ b/c/src/exec/libfs/src/imfs/imfs_gtkn.c
@@ -19,6 +19,8 @@
#endif
#include <stdlib.h>
+#include <string.h>
+
#include "imfs.h"
#include <rtems/libio_.h>
diff --git a/c/src/exec/libfs/src/imfs/ioman.c b/c/src/exec/libfs/src/imfs/ioman.c
index 04755253ae..ffddc89928 100644
--- a/c/src/exec/libfs/src/imfs/ioman.c
+++ b/c/src/exec/libfs/src/imfs/ioman.c
@@ -20,6 +20,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
+#include <string.h>
#include <assert.h>
diff --git a/c/src/exec/libfs/src/imfs/linearfile.c b/c/src/exec/libfs/src/imfs/linearfile.c
index b3df9ba202..3d6593dfce 100644
--- a/c/src/exec/libfs/src/imfs/linearfile.c
+++ b/c/src/exec/libfs/src/imfs/linearfile.c
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <assert.h>
+#include <string.h>
#include <errno.h>
#include <rtems.h>
diff --git a/c/src/exec/libfs/src/imfs/memfile.c b/c/src/exec/libfs/src/imfs/memfile.c
index 042c35fbd5..cfa37c20c6 100644
--- a/c/src/exec/libfs/src/imfs/memfile.c
+++ b/c/src/exec/libfs/src/imfs/memfile.c
@@ -22,6 +22,7 @@
#endif
#include <stdlib.h>
+#include <string.h>
#include <assert.h>
#include <errno.h>
diff --git a/c/src/libfs/ChangeLog b/c/src/libfs/ChangeLog
index af33106b30..2fd4267714 100644
--- a/c/src/libfs/ChangeLog
+++ b/c/src/libfs/ChangeLog
@@ -1,3 +1,11 @@
+2002-04-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/imfs/imfs_getchild.c: include <string.h>.
+ * src/imfs/imfs_gtkn.c: Include <string.h>.
+ * src/imfs/ioman.c: Include <string.h>.
+ * src/imfs/linearfile.c: Include <string.h>.
+ * src/imfs/memfile.c: Include <string.h>.
+
2001-04-04 Joel Sherrill <joel@OARcorp.com>
* src/dosfs/Makefile.am: Per PR129 do not install as many files
diff --git a/c/src/libfs/src/imfs/imfs_getchild.c b/c/src/libfs/src/imfs/imfs_getchild.c
index a539fe7def..8b173afc91 100644
--- a/c/src/libfs/src/imfs/imfs_getchild.c
+++ b/c/src/libfs/src/imfs/imfs_getchild.c
@@ -19,6 +19,7 @@
#include <errno.h>
#include <assert.h>
+#include <string.h>
#include "imfs.h"
static char dotname[2] = ".";
diff --git a/c/src/libfs/src/imfs/imfs_gtkn.c b/c/src/libfs/src/imfs/imfs_gtkn.c
index f635ab3760..c5e51c182b 100644
--- a/c/src/libfs/src/imfs/imfs_gtkn.c
+++ b/c/src/libfs/src/imfs/imfs_gtkn.c
@@ -19,6 +19,8 @@
#endif
#include <stdlib.h>
+#include <string.h>
+
#include "imfs.h"
#include <rtems/libio_.h>
diff --git a/c/src/libfs/src/imfs/ioman.c b/c/src/libfs/src/imfs/ioman.c
index 04755253ae..ffddc89928 100644
--- a/c/src/libfs/src/imfs/ioman.c
+++ b/c/src/libfs/src/imfs/ioman.c
@@ -20,6 +20,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
+#include <string.h>
#include <assert.h>
diff --git a/c/src/libfs/src/imfs/linearfile.c b/c/src/libfs/src/imfs/linearfile.c
index b3df9ba202..3d6593dfce 100644
--- a/c/src/libfs/src/imfs/linearfile.c
+++ b/c/src/libfs/src/imfs/linearfile.c
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <assert.h>
+#include <string.h>
#include <errno.h>
#include <rtems.h>
diff --git a/c/src/libfs/src/imfs/memfile.c b/c/src/libfs/src/imfs/memfile.c
index 042c35fbd5..cfa37c20c6 100644
--- a/c/src/libfs/src/imfs/memfile.c
+++ b/c/src/libfs/src/imfs/memfile.c
@@ -22,6 +22,7 @@
#endif
#include <stdlib.h>
+#include <string.h>
#include <assert.h>
#include <errno.h>
diff --git a/cpukit/libfs/ChangeLog b/cpukit/libfs/ChangeLog
index af33106b30..2fd4267714 100644
--- a/cpukit/libfs/ChangeLog
+++ b/cpukit/libfs/ChangeLog
@@ -1,3 +1,11 @@
+2002-04-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/imfs/imfs_getchild.c: include <string.h>.
+ * src/imfs/imfs_gtkn.c: Include <string.h>.
+ * src/imfs/ioman.c: Include <string.h>.
+ * src/imfs/linearfile.c: Include <string.h>.
+ * src/imfs/memfile.c: Include <string.h>.
+
2001-04-04 Joel Sherrill <joel@OARcorp.com>
* src/dosfs/Makefile.am: Per PR129 do not install as many files
diff --git a/cpukit/libfs/src/imfs/imfs_getchild.c b/cpukit/libfs/src/imfs/imfs_getchild.c
index a539fe7def..8b173afc91 100644
--- a/cpukit/libfs/src/imfs/imfs_getchild.c
+++ b/cpukit/libfs/src/imfs/imfs_getchild.c
@@ -19,6 +19,7 @@
#include <errno.h>
#include <assert.h>
+#include <string.h>
#include "imfs.h"
static char dotname[2] = ".";
diff --git a/cpukit/libfs/src/imfs/imfs_gtkn.c b/cpukit/libfs/src/imfs/imfs_gtkn.c
index f635ab3760..c5e51c182b 100644
--- a/cpukit/libfs/src/imfs/imfs_gtkn.c
+++ b/cpukit/libfs/src/imfs/imfs_gtkn.c
@@ -19,6 +19,8 @@
#endif
#include <stdlib.h>
+#include <string.h>
+
#include "imfs.h"
#include <rtems/libio_.h>
diff --git a/cpukit/libfs/src/imfs/ioman.c b/cpukit/libfs/src/imfs/ioman.c
index 04755253ae..ffddc89928 100644
--- a/cpukit/libfs/src/imfs/ioman.c
+++ b/cpukit/libfs/src/imfs/ioman.c
@@ -20,6 +20,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
+#include <string.h>
#include <assert.h>
diff --git a/cpukit/libfs/src/imfs/linearfile.c b/cpukit/libfs/src/imfs/linearfile.c
index b3df9ba202..3d6593dfce 100644
--- a/cpukit/libfs/src/imfs/linearfile.c
+++ b/cpukit/libfs/src/imfs/linearfile.c
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <assert.h>
+#include <string.h>
#include <errno.h>
#include <rtems.h>
diff --git a/cpukit/libfs/src/imfs/memfile.c b/cpukit/libfs/src/imfs/memfile.c
index 042c35fbd5..cfa37c20c6 100644
--- a/cpukit/libfs/src/imfs/memfile.c
+++ b/cpukit/libfs/src/imfs/memfile.c
@@ -22,6 +22,7 @@
#endif
#include <stdlib.h>
+#include <string.h>
#include <assert.h>
#include <errno.h>