attempt-more-portable-64bit-type-support-for-namei-fileserver-20010403
[openafs.git] / src / util / itc.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 /* itc.h - ITC standard header file
11  *
12  *      defines a few constants used throughout ITC code
13  *
14  */
15
16 #ifndef _ITC
17 #define _ITC
18
19 /* C language patches */
20 typedef int     boolean;
21 #define private static
22
23 /* parameter usage description tags */
24 #define in
25 #define out
26 #define inout
27
28 /* very commonly used values */
29 #define TRUE    1
30 #define FALSE   0
31
32 #endif /* _ITC */