diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-05 05:43:31 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-05 05:43:31 +0000 |
commit | 6d4e78b8aab1f4813439e77f1475dda6594d0b81 (patch) | |
tree | 2da721c127d8c2ae9be5a16e000fc78e1589d25f /libc/sysdeps/linux/sparc/crtn.S | |
parent | 5cae04a3a276559f38fec14c0edfbbc3be77595e (diff) |
Continue the conversion to using per-arch crti.S and crtn.S
Diffstat (limited to 'libc/sysdeps/linux/sparc/crtn.S')
-rw-r--r-- | libc/sysdeps/linux/sparc/crtn.S | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sparc/crtn.S b/libc/sysdeps/linux/sparc/crtn.S new file mode 100644 index 000000000..345638f67 --- /dev/null +++ b/libc/sysdeps/linux/sparc/crtn.S @@ -0,0 +1,21 @@ + .file "initfini.c" + + .section .init + .align 4 + .global _init + .type _init, #function + .proc 020 + ret + restore + .size _init, .-_init + + .section .fini + .align 4 + .global _fini + .type _fini, #function + .proc 020 + ret + restore + .size _fini, .-_fini + + .ident "GCC: (GNU) 3.3.2" |