aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 11866b85e5..12f563df17 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -62,7 +62,11 @@
#define VM_UNREACHABLE(func) UNREACHABLE
#endif
-#include <setjmp.h>
+#if defined(__wasm__) && !defined(__EMSCRIPTEN__)
+# include "wasm/setjmp.h"
+#else
+# include <setjmp.h>
+#endif
#include "ruby/internal/stdbool.h"
#include "ccan/list/list.h"