diff options
author | Shravan Narayan <shravanrn@gmail.com> | 2023-06-21 06:11:32 -0400 |
---|---|---|
committer | Shravan Narayan <shravanrn@gmail.com> | 2023-06-22 05:37:22 -0400 |
commit | c2d4c539abdd16aded08c890db970647c5c52052 (patch) | |
tree | d08f030f18f6e3891c856973e8537a31b2cb568e | |
parent | 6d3ecdc0e64597cfc40688e5481487234a5ebd1e (diff) | |
download | wabt-c2d4c539abdd16aded08c890db970647c5c52052.tar.gz wabt-c2d4c539abdd16aded08c890db970647c5c52052.tar.bz2 wabt-c2d4c539abdd16aded08c890db970647c5c52052.zip |
wasm2c: add cpp guard in wasm2c exceptions header
-rw-r--r-- | wasm2c/wasm-rt-exceptions.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/wasm2c/wasm-rt-exceptions.h b/wasm2c/wasm-rt-exceptions.h index 7ccba2f7..29932c44 100644 --- a/wasm2c/wasm-rt-exceptions.h +++ b/wasm2c/wasm-rt-exceptions.h @@ -19,6 +19,10 @@ #include "wasm-rt.h" +#ifdef __cplusplus +extern "C" { +#endif + /** * A tag is represented as an arbitrary pointer. */ @@ -66,4 +70,8 @@ uint32_t wasm_rt_exception_size(void); */ void* wasm_rt_exception(void); +#ifdef __cplusplus +} +#endif + #endif |