mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-01-05 22:14:04 -05:00
10 lines
122 B
C++
Executable File
10 lines
122 B
C++
Executable File
#include <ucontext.h>
|
|
#include <cstddef>
|
|
|
|
int main() {
|
|
ucontext_t context;
|
|
getcontext(&context);
|
|
|
|
return 0;
|
|
}
|