source: rtems/cpukit/libfs/src/imfs/imfs_free.c @ f9d1afc

4.104.114.84.95
Last change on this file since f9d1afc was d6b1d73, checked in by Joel Sherrill <joel.sherrill@…>, on 01/22/01 at 14:05:14

2001-01-22 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/imfs/config.h
  • src/imfs/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/imfs/.cvsignore: Add config.h and stamp-h
  • src/imfs/*.c: Add config.h support.
  • Property mode set to 100644
File size: 760 bytes
Line 
1/*
2 *  Free IMFS Node Support Routines
3 *
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
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.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <errno.h>
20
21#include <rtems/libio_.h>
22#include "imfs.h"
23
24/*
25 *  IMFS_freenodinfo
26 *
27 *  This routine is the IMFS free node handler for the file system
28 *  operations table. 
29 *
30 *  The In Memory File System keeps its nodes in memory.  This routine
31 *  is for file sytems that do not.
32 */
33
34int IMFS_freenodinfo(
35 rtems_filesystem_location_info_t      *pathloc       /* IN */
36)
37{
38  return 0;
39}
40
Note: See TracBrowser for help on using the repository browser.