blob: acddc4cf8b29106c197db27cc61337e9bf8b05ca [file] [log] [blame]
#include <stdlib.h>
void
foo (void)
{
exit (0);
}
void
__attribute__((destructor))
bar (void)
{
static int i;
foo ();
++i;
}
void
baz (void)
{
}