source: rtems/c/src/exec/libfs/src/imfs/imfs_unixstub.c @ b440e57b

4.104.114.84.95
Last change on this file since b440e57b was b440e57b, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/99 at 13:40:30

Added imfs_unixstub.c to satisfy linker problems on UNIX port.

  • Property mode set to 100644
File size: 1002 bytes
Line 
1/*
2 *  IMFS Stub for UNIX configuration
3 *
4 *  COPYRIGHT (c) 1989-1998.
5 *  On-Line Applications Research Corporation (OAR).
6 *  Copyright assigned to U.S. Government, 1994.
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#include <sys/types.h>         /* for mkdir */
16#include <fcntl.h>
17#include <unistd.h>
18#include <stdlib.h>
19
20#include <assert.h>
21
22#include "imfs.h"
23#include "libio_.h"
24
25#include <stdio.h>
26
27/* 
28 *  IMFS file system operations table
29 */
30
31rtems_filesystem_operations_table  IMFS_ops = {
32  NULL,
33  NULL,
34  NULL,
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};
49
50/* 
51 *  IMFS file system operations table
52 */
53
54rtems_filesystem_operations_table  miniIMFS_ops = {
55  NULL,
56  NULL,
57  NULL,
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};
Note: See TracBrowser for help on using the repository browser.