diff options
| author | gingerBill <bill@gingerbill.org> | 2023-06-07 00:12:54 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-06-07 00:12:54 +0100 |
| commit | d75df7fd8a7f96a64bd28c1b180a6cea7ea6137b (patch) | |
| tree | a73e1dd58067b9446aa65f152d010fa60eab8038 /core/runtime | |
| parent | 2bc5e0ebd71f1337cf5c3820cb4b623a29e90fbe (diff) | |
Rename procs
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/procs_js.odin (renamed from core/runtime/procs_js_wasm32.odin) | 2 | ||||
| -rw-r--r-- | core/runtime/procs_wasm.odin (renamed from core/runtime/procs_wasm32.odin) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/runtime/procs_js_wasm32.odin b/core/runtime/procs_js.odin index b8acebc87..d3e12410c 100644 --- a/core/runtime/procs_js_wasm32.odin +++ b/core/runtime/procs_js.odin @@ -1,4 +1,4 @@ -//+build js wasm32 +//+build js package runtime init_default_context_for_js: Context diff --git a/core/runtime/procs_wasm32.odin b/core/runtime/procs_wasm.odin index 3981cead0..26dcfef77 100644 --- a/core/runtime/procs_wasm32.odin +++ b/core/runtime/procs_wasm.odin @@ -1,4 +1,4 @@ -//+build wasm32 +//+build wasm32, wasm64p32 package runtime @(private="file") |