yuzu/externals/vcpkg/ports/breakpad/check_getcontext.cc

10 lines
122 B
C++
Raw Normal View History

2022-07-23 05:01:36 +04:00
#include <ucontext.h>
#include <cstddef>
int main() {
ucontext_t context;
getcontext(&context);
return 0;
}