Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
emscripten-core
Edit Copy
Star
GitHub Repository:
emscripten-core/emscripten
Path:
blob/main/test/cmake/whole_archive/lib.c
6
1
7
1
views
1
#include <stdio.h>
2
3
__attribute__
(
(
constructor
)
)
void
init
(
void
)
{
4
printf
(
"init\n"
)
;
5
}
6
7