repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
(DEFINE_LANGUAGE_CODE2): Define.
[glibc.git]
/
dlfcn
/
bug-atexit2-lib.c
blob
ca39657566970e50db1410c2caaaa5b12bb67cb9
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
}