• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // This is an incomplete & imprecice implementation
2 // It defers to the open source freebsd-elf implementations.
3 #ifndef __MINGW_ELF__
4 #define __MINGW_ELF__
5 
6 #ifdef MINGW // Only for cross compilation to mingw
7 
8 #include <inttypes.h>
9 
10 #include "freebsd-elf_common.h"
11 #include "freebsd-elf32.h"
12 #include "freebsd-elf64.h"
13 
14 #endif // MINGW
15 #endif