1 // This is an incomplete & imprecice implementation of the *nix file 2 // by the same name 3 4 5 // Since this is only intended for VC++ compilers 6 // use #pragma once instead of guard macros 7 #pragma once 8 9 #ifdef _MSC_VER // Only for cross compilation to windows 10 11 #include <sys/ucontext.h> 12 13 #endif // _MSC_VER 14