1 // This is an incomplete & imprecice implementation 2 // It defers to the open source freebsd-elf implementations. 3 4 // Since this is only intended for VC++ compilers 5 // use #pragma once instead of guard macros 6 #pragma once 7 8 #ifdef _MSC_VER // Only for cross compilation to windows 9 10 #include <inttypes.h> 11 12 #include "freebsd-elf_common.h" 13 #include "freebsd-elf32.h" 14 #include "freebsd-elf64.h" 15 16 #endif // _MSC_VER 17