mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 17:23:09 +00:00
8 lines
191 B
C
Vendored
8 lines
191 B
C
Vendored
extern void __wasm_call_ctors(void);
|
|
|
|
__attribute__((export_name("_initialize")))
|
|
void _initialize(void) {
|
|
// The linker synthesizes this to call constructors.
|
|
__wasm_call_ctors();
|
|
}
|