summaryrefslogtreecommitdiffstats
path: root/c/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-08 18:28:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-08 18:28:59 +0000
commitc873f40be04014bf6bab87cf7b608a59fe29e781 (patch)
tree9c7db79ef6f8434c2845b2590fadded714785eb5 /c/src
parent2002-04-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-c873f40be04014bf6bab87cf7b608a59fe29e781.tar.bz2
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>.
Diffstat (limited to 'c/src')
-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
12 files changed, 28 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>