Files
third_party_libunwind/include/win/elf.h
T
Steve MacLean 2e0aa5b6dc Add simple Windows platform abstraction layer
Add required unix style headers as a platform abstraction layer
This will allow compilation on Windows.

Simple single threaded implementation of the platform abstraction layer for
compilation on windows
2020-06-04 09:01:49 -07:00

17 lines
409 B
C

// This is an incomplete & imprecice implementation
// It defers to the open source freebsd-elf implementations.
// Since this is only intended for VC++ compilers
// use #pragma once instead of guard macros
#pragma once
#ifdef _MSC_VER // Only for cross compilation to windows
#include <inttypes.h>
#include "freebsd-elf_common.h"
#include "freebsd-elf32.h"
#include "freebsd-elf64.h"
#endif // _MSC_VER