diff options
Diffstat (limited to 'test/elf/X86_64/Inputs/initfini-option.c')
-rw-r--r-- | test/elf/X86_64/Inputs/initfini-option.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/elf/X86_64/Inputs/initfini-option.c b/test/elf/X86_64/Inputs/initfini-option.c new file mode 100644 index 0000000000000..e9a6c08c12aca --- /dev/null +++ b/test/elf/X86_64/Inputs/initfini-option.c @@ -0,0 +1,13 @@ +#include <stdio.h> + +void init() { + printf("%s\n", __FUNCTION__); +} + +void fini() { + printf("%s\n", __FUNCTION__); +} + +int main() { +} + |