]> git.ipfire.org Git - thirdparty/glibc.git/blame - dlfcn/bug-atexit2-lib.c
hurd: Fix build
[thirdparty/glibc.git] / dlfcn / bug-atexit2-lib.c
CommitLineData
7237d704
UD
1#include <stdio.h>
2#include <stdlib.h>
3
4void
5fx (void)
6{
7 puts ("At exit fx");
8}
9
10void
11foo (void)
12{
13 atexit (fx);
14}