source: rtems/cpukit/libfs/src/defaults/default_close.c @ 3b7c123

4.115
Last change on this file since 3b7c123 was d62711f2, checked in by Sebastian Huber <sebastian.huber@…>, on 09/27/10 at 12:32:40

2010-09-27 Sebastian Huber <sebastian.huber@…>

  • libfs/src/defaults/default_close.c: Return 0 instead of an error status.
  • Property mode set to 100644
File size: 360 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2010.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#include <rtems/libio.h>
13
14int rtems_filesystem_default_close(
15  rtems_libio_t *iop
16)
17{
18  return 0;
19}
Note: See TracBrowser for help on using the repository browser.