summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-27 13:06:16 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-27 13:06:16 -0600
commit03e54614a3ca200d67736b8f0ae73a3063edcbee (patch)
tree5f9bf9c2ab71a9b422d377a9a3206a573e9663f6 /cpukit/libfs/src/dosfs/msdos.h
parentpsxtmtests_plan.csv: Add explicit No status (diff)
downloadrtems-03e54614a3ca200d67736b8f0ae73a3063edcbee.tar.bz2
statvfs filesystem handlers: Remove restrict
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos.h')
-rw-r--r--cpukit/libfs/src/dosfs/msdos.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos.h b/cpukit/libfs/src/dosfs/msdos.h
index 2fa3b58887..57865d5153 100644
--- a/cpukit/libfs/src/dosfs/msdos.h
+++ b/cpukit/libfs/src/dosfs/msdos.h
@@ -313,8 +313,8 @@ int msdos_rename(
);
int msdos_statvfs(
- const rtems_filesystem_location_info_t *__restrict root_loc,
- struct statvfs *__restrict sb);
+ const rtems_filesystem_location_info_t *root_loc,
+ struct statvfs *sb);
void msdos_lock(const rtems_filesystem_mount_table_entry_t *mt_entry);
@@ -348,8 +348,8 @@ ssize_t msdos_file_write(
);
int msdos_file_stat(
- const rtems_filesystem_location_info_t *__restrict loc,
- struct stat *__restrict buf
+ const rtems_filesystem_location_info_t *loc,
+ struct stat *buf
);
int
@@ -371,8 +371,8 @@ ssize_t msdos_dir_read(
int msdos_dir_sync(rtems_libio_t *iop);
int msdos_dir_stat(
- const rtems_filesystem_location_info_t *__restrict loc,
- struct stat *__restrict buf
+ const rtems_filesystem_location_info_t *loc,
+ struct stat *buf
);
/**