mirror of
https://github.com/openharmony/third_party_libunwind.git
synced 2026-07-01 07:39:12 -04:00
2e0aa5b6dc
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
17 lines
409 B
C
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
|