Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/lib/libc/crt1_reactor.c
6162 views
1
/*
2
* Copyright 2020 The Emscripten Authors. All rights reserved.
3
* Emscripten is available under two separate licenses, the MIT license and the
4
* University of Illinois/NCSA Open Source License. Both these licenses can be
5
* found in the LICENSE file.
6
*/
7
8
extern void __wasm_call_ctors(void) __attribute__((weak));
9
10
void _initialize(void) {
11
if (__wasm_call_ctors) {
12
__wasm_call_ctors();
13
}
14
}
15
16