source: rtems/cpukit/libfs/src/dosfs/msdos_free.c @ 53da07e

4.115
Last change on this file since 53da07e was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 772 bytes
Line 
1/*
2 *  Free node handler implementation for the filesystem
3 *  operations table.
4 *
5 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
6 *  Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 */
12
13#if HAVE_CONFIG_H
14#include "config.h"
15#endif
16
17#include <rtems.h>
18#include <rtems/libio_.h>
19
20#include <errno.h>
21
22#include "fat.h"
23#include "fat_fat_operations.h"
24#include "fat_file.h"
25
26#include "msdos.h"
27
28/* msdos_free_node_info --
29 *     Call fat-file close routine.
30 */
31void
32msdos_free_node_info(const rtems_filesystem_location_info_t *pathloc)
33{
34    fat_file_close(pathloc->mt_entry, pathloc->node_access);
35}
Note: See TracBrowser for help on using the repository browser.