diff options
author | Yuta Saito <[email protected]> | 2022-01-15 22:18:55 +0900 |
---|---|---|
committer | Yuta Saito <[email protected]> | 2022-01-19 11:19:06 +0900 |
commit | 23de01c7aa5d8f3651213b75295a4969a187a041 (patch) | |
tree | 98abcc58bb467b0481bfede5998ed7a80a4110fb /gc.c | |
parent | a4b73f1ba88b4d126569ba5ab295c0eb5f121662 (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.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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> |