forked from Imagelibrary/rtems
30 lines
587 B
C
30 lines
587 B
C
/**
|
|
* @file
|
|
*
|
|
* @ingroup LibIOFSOps File System Operations
|
|
*
|
|
* @brief RTEMS Default File System Synchronises changes to a file
|
|
*/
|
|
|
|
/*
|
|
* COPYRIGHT (c) 2010.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems/libio_.h>
|
|
|
|
int rtems_filesystem_default_fsync_or_fdatasync(
|
|
rtems_libio_t *iop
|
|
)
|
|
{
|
|
rtems_set_errno_and_return_minus_one( EINVAL );
|
|
}
|