source: rtems/cpukit/libfs/src/defaults/default_close.c @ 8587b01

4.115
Last change on this file since 8587b01 was 36f3207, checked in by Alex Ivanov <alexivanov97@…>, on 12/28/12 at 13:49:39

libfs: Doxygen Enhancement Task #3

  • Property mode set to 100644
File size: 411 bytes
Line 
1/**
2 * @file
3 *
4 * @brief RTEMS Default File System Close
5 */
6
7/*
8 *  COPYRIGHT (c) 2010.
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.rtems.com/license/LICENSE.
14 */
15
16#include <rtems/libio.h>
17
18int rtems_filesystem_default_close(
19  rtems_libio_t *iop
20)
21{
22  return 0;
23}
Note: See TracBrowser for help on using the repository browser.