mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 18:53:52 +08:00
14 lines
196 B
C
14 lines
196 B
C
|
#ifdef __KERNEL__
|
||
|
# ifdef CONFIG_X86_32
|
||
|
# include "a.out_32.h"
|
||
|
# else
|
||
|
# include "a.out_64.h"
|
||
|
# endif
|
||
|
#else
|
||
|
# ifdef __i386__
|
||
|
# include "a.out_32.h"
|
||
|
# else
|
||
|
# include "a.out_64.h"
|
||
|
# endif
|
||
|
#endif
|