Files
rtems/cpukit/libfs/src/defaults/default_fsync.c
Sebastian Huber cfe8f7a9b7 doxygen: Switch @brief and @ingroup
This order change fixes the Latex documentation build via Doxygen.
2020-04-28 09:04:00 +02:00

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 );
}