Files
third_party_libunwind/include/mingw/ucontext.h
T
chang_jian b4885b363d 加入mingw兼容文件
Signed-off-by: chang_jian <chang_jian@hoperun.com>
2021-11-14 20:51:24 -05:00

11 lines
246 B
C
Executable File

// This is an incomplete & imprecice implementation of the *nix file
// by the same name
#ifndef __MINGW_UCONTEXT__
#define __MINGW_UCONTEXT__
#ifdef MINGW // Only for cross compilation to mingw
#include <sys/ucontext.h>
#endif // MINGW
#endif