mirror of git://sourceware.org/git/glibc.git
15 lines
118 B
C
15 lines
118 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
|
||
|
|
void
|
||
|
|
fx (void)
|
||
|
|
{
|
||
|
|
puts ("At exit fx");
|
||
|
|
}
|
||
|
|
|
||
|
|
void
|
||
|
|
foo (void)
|
||
|
|
{
|
||
|
|
atexit (fx);
|
||
|
|
}
|