Sign in
third-party-mirror
/
GRTEv4
/
cf41cedf52c87cf4f27c61e4eb8444ecb811ab13
/
.
/
google3
/
third_party
/
grte
/
v4_src
/
glibc-2.19
/
dlfcn
/
bug-atexit2-lib.c
blob: ca39657566970e50db1410c2caaaa5b12bb67cb9 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdlib.h>
void
fx
(
void
)
{
puts
(
"At exit fx"
);
}
void
foo
(
void
)
{
atexit
(
fx
);
}