diff options
Diffstat (limited to 'libc/sysdeps/linux/sparc64/crtn.S')
-rw-r--r-- | libc/sysdeps/linux/sparc64/crtn.S | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sparc64/crtn.S b/libc/sysdeps/linux/sparc64/crtn.S new file mode 100644 index 000000000..d64ffd020 --- /dev/null +++ b/libc/sysdeps/linux/sparc64/crtn.S @@ -0,0 +1,17 @@ + .file "initfini.c" + + .section .init + .align 4 + .global _init + .type _init, %function + .proc 020 + ret + restore + + .section .fini + .align 4 + .global _fini + .type _fini, %function + .proc 020 + ret + restore |