blob: acddc4cf8b29106c197db27cc61337e9bf8b05ca [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <stdlib.h>
2void
3foo (void)
4{
5 exit (0);
6}
7
8void
9__attribute__((destructor))
10bar (void)
11{
12 static int i;
13 foo ();
14 ++i;
15}
16void
17baz (void)
18{
19}