aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/runtime/runtime_wasm_unknown.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/runtime_wasm_unknown.go b/src/runtime/runtime_wasm_unknown.go
index 2d1ef9cca..111bddf08 100644
--- a/src/runtime/runtime_wasm_unknown.go
+++ b/src/runtime/runtime_wasm_unknown.go
@@ -11,8 +11,8 @@ type timeUnit int64
//export __wasm_call_ctors
func __wasm_call_ctors()
-//export _start
-func _start() {
+//export _initialize
+func _initialize() {
// These need to be initialized early so that the heap can be initialized.
heapStart = uintptr(unsafe.Pointer(&heapStartSymbol))
heapEnd = uintptr(wasm_memory_size(0) * wasmPageSize)