summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorYuta Saito <kateinoigakukun@gmail.com>2022-01-15 22:18:55 +0900
committerYuta Saito <kateinoigakukun@gmail.com>2022-01-19 11:19:06 +0900
commit23de01c7aa5d8f3651213b75295a4969a187a041 (patch)
tree98abcc58bb467b0481bfede5998ed7a80a4110fb /gc.c
parenta4b73f1ba88b4d126569ba5ab295c0eb5f121662 (diff)
[wasm] eval_inter.h gc.c vm_core.h: include wasm/setjmp.h instead of sysroot header
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5407
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index aca15ad426..0d5a1336b3 100644
--- a/gc.c
+++ b/gc.c
@@ -28,7 +28,11 @@
#include <sys/mman.h>
#endif
-#include <setjmp.h>
+#if defined(__wasm__) && !defined(__EMSCRIPTEN__)
+# include "wasm/setjmp.h"
+#else
+# include <setjmp.h>
+#endif
#include <stdarg.h>
#include <stdio.h>