fix-linux22-20050310
[openafs.git] / src / afs / LINUX / osi_inode.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * LINUX inode operations
12  *
13  * Implements:
14  * afs_syscall_icreate
15  * afs_syscall_iopen
16  * afs_syscall_iincdec
17  *
18  */
19
20 #include <afsconfig.h>
21 #include "afs/param.h"
22
23 RCSID
24     ("$Header$");
25
26 #include "afs/sysincludes.h"    /* Standard vendor system headers */
27 #include "afsincludes.h"        /* Afs-based standard headers */
28 #include "afs/osi_inode.h"
29 #include "afs/afs_stats.h"      /* statistics stuff */
30
31 int
32 afs_syscall_icreate(void)
33 {
34     return 0;
35 }
36
37 int
38 afs_syscall_iopen(void)
39 {
40     return 0;
41 }
42
43 int
44 afs_syscall_iincdec(void)
45 {
46     return 0;
47 }