mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 04:37:20 +08:00
10 lines
122 B
C++
10 lines
122 B
C++
|
#include <ucontext.h>
|
||
|
#include <cstddef>
|
||
|
|
||
|
int main() {
|
||
|
ucontext_t context;
|
||
|
getcontext(&context);
|
||
|
|
||
|
return 0;
|
||
|
}
|