summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/defaults
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/defaults
parentpsxtmtests_plan.csv: Add explicit No status (diff)
downloadrtems-03e54614a3ca200d67736b8f0ae73a3063edcbee.tar.bz2
statvfs filesystem handlers: Remove restrict
Diffstat (limited to 'cpukit/libfs/src/defaults')
-rw-r--r--cpukit/libfs/src/defaults/default_statvfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libfs/src/defaults/default_statvfs.c b/cpukit/libfs/src/defaults/default_statvfs.c
index 41ac1c0a46..139d0b0742 100644
--- a/cpukit/libfs/src/defaults/default_statvfs.c
+++ b/cpukit/libfs/src/defaults/default_statvfs.c
@@ -21,8 +21,8 @@
#include <rtems/seterr.h>
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
)
{
rtems_set_errno_and_return_minus_one( ENOSYS );