time-t-casting-fixes-20060404
[openafs.git] / src / vol / nfs.h
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 #include <errno.h>
11
12 #ifndef AFS_VOL_NFS_H
13 #define AFS_VOL_NFS_H 1
14 /*
15  * (C) COPYRIGHT IBM CORPORATION 1987
16  * LICENSED MATERIALS - PROPERTY OF IBM
17  */
18 /*
19
20         System:         VICE-TWO
21         Module:         nfs.h
22         Institution:    The Information Technology Center, Carnegie-Mellon University
23
24  */
25 #define private static
26 #ifndef NULL
27 #define NULL    0
28 #endif
29 #define TRUE    1
30 #define FALSE   0
31 typedef afs_uint32 bit32;       /* Unsigned, 32 bits */
32 typedef unsigned short bit16;   /* Unsigned, 16 bits */
33 typedef unsigned char byte;     /* Unsigned, 8 bits */
34
35 typedef bit32 Device;           /* Unix device number */
36 #ifndef Error
37 #define Error   bit32
38 #endif
39 #endif /* AFS_VOL_NFS_H */