Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
HEAD
/
.
/
test
/
other
/
test_dlopen_blocking_side.c
blob: b8b54940c34ce7c0cef1862efed8ee13cc2e00ad [
file
]
#include
<stdio.h>
#include
<stdlib.h>
int
foo
=
42
;
void
my_atexit
()
{
puts
(
"side module atexit"
);
}
__attribute__
((
constructor
))
static
void
ctor
()
{
puts
(
"side module ctor"
);
atexit
(
my_atexit
);
}