source: rtems/c/src/lib/libc/imfs_fdatasync.c @ 073e2411

4.104.114.84.95
Last change on this file since 073e2411 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 525 bytes
Line 
1/*
2 *  IMFS_fdatasync
3 *
4 *  The following routine does a sync on an IMFS node.  The In Memory
5 *  File System is always in sync, therefore this routine always returns
6 *  pass.
7 *
8 *  COPYRIGHT (c) 1989-1999.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.OARcorp.com/rtems/license.html.
14 *
15 *  $Id$
16 */
17
18#include "imfs.h"
19
20int IMFS_fdatasync(
21  rtems_libio_t *iop
22)
23{
24  return 0;
25}
Note: See TracBrowser for help on using the repository browser.