| 1 | #include <stdlib.h> |
|---|---|
| 2 | void |
| 3 | foo (void) |
| 4 | { |
| 5 | exit (status: 0); |
| 6 | } |
| 7 | |
| 8 | void |
| 9 | __attribute__((destructor)) |
| 10 | bar (void) |
| 11 | { |
| 12 | foo (); |
| 13 | } |
| 14 | void |
| 15 | baz (void) |
| 16 | { |
| 17 | } |
| 18 |
| 1 | #include <stdlib.h> |
|---|---|
| 2 | void |
| 3 | foo (void) |
| 4 | { |
| 5 | exit (status: 0); |
| 6 | } |
| 7 | |
| 8 | void |
| 9 | __attribute__((destructor)) |
| 10 | bar (void) |
| 11 | { |
| 12 | foo (); |
| 13 | } |
| 14 | void |
| 15 | baz (void) |
| 16 | { |
| 17 | } |
| 18 |