summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/libio.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/libcsupport/include/rtems/libio.h
parentpsxtmtests_plan.csv: Add explicit No status (diff)
downloadrtems-03e54614a3ca200d67736b8f0ae73a3063edcbee.tar.bz2
statvfs filesystem handlers: Remove restrict
Diffstat (limited to 'cpukit/libcsupport/include/rtems/libio.h')
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index c1b7b73d7f..21d57ebddf 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -485,8 +485,8 @@ typedef int (*rtems_filesystem_rename_t)(
* @see rtems_filesystem_default_statvfs().
*/
typedef int (*rtems_filesystem_statvfs_t)(
- const rtems_filesystem_location_info_t *__restrict loc,
- struct statvfs *__restrict buf
+ const rtems_filesystem_location_info_t *loc,
+ struct statvfs *buf
);
/**
@@ -738,8 +738,8 @@ int rtems_filesystem_default_rename(
* @see rtems_filesystem_statvfs_t.
*/
int rtems_filesystem_default_statvfs(
- const rtems_filesystem_location_info_t *__restrict loc,
- struct statvfs *__restrict buf
+ const rtems_filesystem_location_info_t *loc,
+ struct statvfs *buf
);
/** @} */