source: rtems/cpukit/libfs/src/imfs/imfs_unixstub.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was a5305f6b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/17/04 at 08:34:41

Remove stray white spaces.

  • Property mode set to 100644
File size: 996 bytes
Line 
1/*
2 *  IMFS Stub for UNIX configuration
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <sys/types.h>         /* for mkdir */
19#include <fcntl.h>
20#include <unistd.h>
21#include <stdlib.h>
22
23#include <assert.h>
24
25#include "imfs.h"
26#include <rtems/libio_.h>
27
28#include <stdio.h>
29
30/*
31 *  IMFS file system operations table
32 */
33
34rtems_filesystem_operations_table  IMFS_ops = {
35  NULL,
36  NULL,
37  NULL,
38  NULL,
39  NULL,
40  NULL,
41  NULL,
42  NULL,
43  NULL,
44  NULL,
45  NULL,
46  NULL,
47  NULL,
48  NULL,
49  NULL,
50  NULL
51};
52
53/*
54 *  IMFS file system operations table
55 */
56
57rtems_filesystem_operations_table  miniIMFS_ops = {
58  NULL,
59  NULL,
60  NULL,
61  NULL,
62  NULL,
63  NULL,
64  NULL,
65  NULL,
66  NULL,
67  NULL,
68  NULL,
69  NULL,
70  NULL,
71  NULL,
72  NULL,
73  NULL
74};
Note: See TracBrowser for help on using the repository browser.