ubuntu-buildroot/output/build/glibc-2.36-81-g4f4d7a13edfd.../dlfcn/bug-atexit2-lib.c

15 lines
118 B
C
Raw Normal View History

2024-04-01 15:19:46 +00:00
#include <stdio.h>
#include <stdlib.h>
void
fx (void)
{
puts ("At exit fx");
}
void
foo (void)
{
atexit (fx);
}