eliminate GCC warning about initialization order
[reactos.git] / reactos / include / elf / machine.h
1 #ifndef _REACTOS_ELF_MACHINE_H_
2 #define _REACTOS_ELF_MACHINE_H_ 1
3
4 #ifdef _M_IX86
5 #define _REACTOS_ELF_MACHINE_IS_TARGET
6 #include <elf/elf-i386.h>
7 #undef _REACTOS_ELF_MACHINE_IS_TARGET
8 #else
9 #error Unsupported target architecture
10 #endif
11
12 #endif