mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-05 21:35:04 +08:00
14 lines
208 B
C
14 lines
208 B
C
|
#ifdef __KERNEL__
|
||
|
# ifdef CONFIG_X86_32
|
||
|
# include "resource_32.h"
|
||
|
# else
|
||
|
# include "resource_64.h"
|
||
|
# endif
|
||
|
#else
|
||
|
# ifdef __i386__
|
||
|
# include "resource_32.h"
|
||
|
# else
|
||
|
# include "resource_64.h"
|
||
|
# endif
|
||
|
#endif
|