summaryrefslogtreecommitdiff
path: root/include/remote/win/ucontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/remote/win/ucontext.h')
-rw-r--r--include/remote/win/ucontext.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/remote/win/ucontext.h b/include/remote/win/ucontext.h
new file mode 100644
index 00000000..fb5aaf73
--- /dev/null
+++ b/include/remote/win/ucontext.h
@@ -0,0 +1,13 @@
+// This is an incomplete & imprecice implementation of the *nix file
+// by the same name
+
+
+// Since this is only intended for VC++ compilers
+// use #pragma once instead of guard macros
+#pragma once
+
+#ifdef _MSC_VER // Only for cross compilation to windows
+
+#include <sys/ucontext.h>
+
+#endif // _MSC_VER