diff options
Diffstat (limited to 'elf/order2mod2.c')
-rw-r--r-- | elf/order2mod2.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/elf/order2mod2.c b/elf/order2mod2.c new file mode 100644 index 0000000..026cd2a --- /dev/null +++ b/elf/order2mod2.c @@ -0,0 +1,18 @@ +#include <stdio.h> + +extern int foo (void); +extern int bar (void); + +void +__attribute__ ((constructor)) +init (void) +{ + (void) (foo () - bar ()); +} + +static void +__attribute__ ((destructor)) +fini (void) +{ + putchar ('2'); +} |