summaryrefslogtreecommitdiff
path: root/cpukit/libfs/src/dosfs/msdos_statvfs.c
diff options
context:
space:
mode:
authorDaniel Ramirez <javamonn@gmail.com>2013-11-21 16:54:21 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-21 16:56:48 -0600
commitbb81e04ae3a88ce37de8718ef112ace59b3975af (patch)
tree3ade9b3de36057f6ba755cd74a17aa63c2eb7729 /cpukit/libfs/src/dosfs/msdos_statvfs.c
parent4ea97d2449e783cce95fb62c7a424c94531ac46c (diff)
statvfs and ALL filesystem handlers: Add restrict keyword.
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos_statvfs.c')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_statvfs.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_statvfs.c b/cpukit/libfs/src/dosfs/msdos_statvfs.c
index 1a1d974fc3..87d863ed86 100644
--- a/cpukit/libfs/src/dosfs/msdos_statvfs.c
+++ b/cpukit/libfs/src/dosfs/msdos_statvfs.c
@@ -18,8 +18,9 @@
#include "fat_fat_operations.h"
#include "msdos.h"
-int msdos_statvfs(const rtems_filesystem_location_info_t *root_loc,
- struct statvfs *sb)
+int msdos_statvfs(
+ const rtems_filesystem_location_info_t *__restrict root_loc,
+ struct statvfs *__restrict sb)
{
msdos_fs_info_t *fs_info = root_loc->mt_entry->fs_info;
fat_vol_t *vol = &fs_info->fat.vol;