Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
bdd93d52cf43d2991561d70e238bf11e422b794b
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
dlfcn
/
bug-atexit2-lib.c
blob: ca39657566970e50db1410c2caaaa5b12bb67cb9 [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame
]
1
#include
<stdio.h>
2
#include
<stdlib.h>
3
4
void
5
fx
(
void
)
6
{
7
puts
(
"At exit fx"
);
8
}
9
10
void
11
foo
(
void
)
12
{
13
atexit
(
fx
);
14
}