Cancel redefinition of DOSBase for the 'cdrom' test utility. Now the
[AROS.git] / rom / kernel / kernel_globals.h
blob27835b4f4d5874b4829ab7708acf10213fe8b532
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 /*
9 Copyright © 2011, The AROS Development Team. All rights reserved.
10 $Id$
12 Desc: Global KernelBase access
13 Lang: english
16 #ifndef KERNEL_GLOBALS_H
17 #define KERNEL_GLOBALS_H
19 struct KernelBase;
20 extern struct KernelBase *KernelBase;
22 static inline struct KernelBase *getKernelBase(void)
24 return KernelBase;
27 static inline void setKernelBase(struct KernelBase *base)
29 KernelBase = base;
32 #endif /* KERNEL_GLOBALS_H */