mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 10:37:47 +00:00
14 lines
192 B
C
14 lines
192 B
C
|
#ifdef __KERNEL__
|
||
|
# ifdef CONFIG_X86_32
|
||
|
# include "page_32.h"
|
||
|
# else
|
||
|
# include "page_64.h"
|
||
|
# endif
|
||
|
#else
|
||
|
# ifdef __i386__
|
||
|
# include "page_32.h"
|
||
|
# else
|
||
|
# include "page_64.h"
|
||
|
# endif
|
||
|
#endif
|