mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-07-24 17:42:36 +00:00
14 lines
196 B
C
14 lines
196 B
C
|
|
#ifdef __KERNEL__
|
||
|
|
# ifdef CONFIG_X86_32
|
||
|
|
# include "types_32.h"
|
||
|
|
# else
|
||
|
|
# include "types_64.h"
|
||
|
|
# endif
|
||
|
|
#else
|
||
|
|
# ifdef __i386__
|
||
|
|
# include "types_32.h"
|
||
|
|
# else
|
||
|
|
# include "types_64.h"
|
||
|
|
# endif
|
||
|
|
#endif
|