Files
reactos/include/reactos/elf/machine.h
T
Amine Khaldi c424146e2c Create a branch for cmake bringup.
svn path=/branches/cmake-bringup/; revision=48236
2010-07-24 18:52:44 +00:00

17 lines
373 B
C

#ifndef _REACTOS_ELF_MACHINE_H_
#define _REACTOS_ELF_MACHINE_H_ 1
#ifdef _M_IX86
#define _REACTOS_ELF_MACHINE_IS_TARGET
#include <elf/elf-i386.h>
#undef _REACTOS_ELF_MACHINE_IS_TARGET
#elif defined(_M_PPC)
#define _REACTOS_ELF_MACHINE_IS_TARGET
#include <elf/elf-powerpc.h>
#undef _REACTOS_ELF_MACHINE_IS_TARGET
#else
#error Unsupported target architecture
#endif
#endif