Standardize License information
[openafs.git] / src / rx / rx_globals.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 /* RX:  Globals for internal use, basically */
11
12 /* Enable data initialization when the header file is included */
13 #define INIT(stuff) = stuff
14 #if defined(AFS_NT40_ENV) && defined(AFS_PTHREAD_ENV)
15 #define EXT __declspec(dllexport)
16 #else
17 #define EXT
18 #endif
19
20 #ifdef KERNEL
21 #include        "../afs/param.h"
22 #ifndef UKERNEL
23 #include "../h/types.h"
24 #else /* !UKERNEL */
25 #include        "../afs/sysincludes.h"
26 #endif /* !UKERNEL */
27 #else /* KERNEL */
28 #include        <afs/param.h>
29 #endif /* KERNEL */
30
31 #include "rx_globals.h"