summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/rfs
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-23 13:32:58 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-23 15:12:54 +0200
commit7660e8b34778285a7d32e0265fd7697c213179a7 (patch)
treeee439cb8ce567ca36ddff28d11ab6b9206edb7e5 /cpukit/libfs/src/rfs
parentrtems: Create dpmem implementation header (diff)
downloadrtems-7660e8b34778285a7d32e0265fd7697c213179a7.tar.bz2
Include missing <string.h>
Diffstat (limited to 'cpukit/libfs/src/rfs')
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-block.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-buffer.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-dir.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-file-system.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-file.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-format.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-group.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-inode.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-link.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-rtems.c1
11 files changed, 11 insertions, 0 deletions
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-block.c b/cpukit/libfs/src/rfs/rtems-rfs-block.c
index 1c6329a10a..23e0a64129 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-block.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-block.c
@@ -37,6 +37,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#include <rtems/rfs/rtems-rfs-block.h>
#include <rtems/rfs/rtems-rfs-data.h>
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-buffer.c b/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
index 7904f74297..8e7e16ba54 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
@@ -21,6 +21,7 @@
#include <inttypes.h>
#include <errno.h>
#include <fcntl.h>
+#include <string.h>
#include <rtems/rfs/rtems-rfs-buffer.h>
#include <rtems/rfs/rtems-rfs-file-system.h>
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-dir.c b/cpukit/libfs/src/rfs/rtems-rfs-dir.c
index d52bf24159..f2f94074ce 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-dir.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-dir.c
@@ -28,6 +28,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#if SIZEOF_OFF_T == 8
#define PRIooff_t PRIo64
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-file-system.c b/cpukit/libfs/src/rfs/rtems-rfs-file-system.c
index 5ab671bcc2..8cedda48ca 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-file-system.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-file-system.c
@@ -19,6 +19,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#include <rtems/rfs/rtems-rfs-data.h>
#include <rtems/rfs/rtems-rfs-file-system.h>
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-file.c b/cpukit/libfs/src/rfs/rtems-rfs-file.c
index 5d623dda26..a3be4ab49e 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-file.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-file.c
@@ -20,6 +20,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#include <rtems/rfs/rtems-rfs-block-pos.h>
#include <rtems/rfs/rtems-rfs-file.h>
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-format.c b/cpukit/libfs/src/rfs/rtems-rfs-format.c
index d445e3d7f1..096db839f8 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-format.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-format.c
@@ -19,6 +19,7 @@
#include "config.h"
#endif
+#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-group.c b/cpukit/libfs/src/rfs/rtems-rfs-group.c
index 1722c76cfc..b08e785114 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-group.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-group.c
@@ -22,6 +22,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#include <rtems/rfs/rtems-rfs-file-system.h>
#include <rtems/rfs/rtems-rfs-group.h>
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-inode.c b/cpukit/libfs/src/rfs/rtems-rfs-inode.c
index 35313674da..fe1a552c8e 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-inode.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-inode.c
@@ -20,6 +20,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#include <rtems/rfs/rtems-rfs-block.h>
#include <rtems/rfs/rtems-rfs-file-system.h>
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-link.c b/cpukit/libfs/src/rfs/rtems-rfs-link.c
index 7cfb60acbb..f729533bd7 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-link.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-link.c
@@ -21,6 +21,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#include <rtems/rfs/rtems-rfs-block.h>
#include <rtems/rfs/rtems-rfs-buffer.h>
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c b/cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c
index b3ec0ed755..7f2968ccda 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c
@@ -21,6 +21,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#if SIZEOF_OFF_T == 8
#define PRIdoff_t PRId64
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-rtems.c b/cpukit/libfs/src/rfs/rtems-rfs-rtems.c
index 6f6271a361..37daeeaab1 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-rtems.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-rtems.c
@@ -21,6 +21,7 @@
#endif
#include <inttypes.h>
+#include <string.h>
#include <stdlib.h>
#if SIZEOF_MODE_T == 8