diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-04-27 13:20:47 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-27 13:20:47 -0400 |
commit | 82acacceaa1bdcb9fb5ec8cece8a73bbf7a561b9 (patch) | |
tree | 449121a81b6a31ce17eaa9d44c68c7608fe7ee6e /crt/sh/crti.s | |
parent | 94f4c8237a58eba21ae24e19ea2d5b7321c0c1f6 (diff) | |
download | musl-82acacceaa1bdcb9fb5ec8cece8a73bbf7a561b9.tar.gz musl-82acacceaa1bdcb9fb5ec8cece8a73bbf7a561b9.tar.bz2 musl-82acacceaa1bdcb9fb5ec8cece8a73bbf7a561b9.tar.xz musl-82acacceaa1bdcb9fb5ec8cece8a73bbf7a561b9.zip |
fix name of sh crt asm directory
Diffstat (limited to 'crt/sh/crti.s')
-rw-r--r-- | crt/sh/crti.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crt/sh/crti.s b/crt/sh/crti.s new file mode 100644 index 00000000..0410ab63 --- /dev/null +++ b/crt/sh/crti.s @@ -0,0 +1,13 @@ +.section .init +.global _init +.type _init, @function +_init: + sts.l pr, @-r15 + nop + +.section .fini +.global _fini +.type _fini, @function +_fini: + sts.l pr, @-r15 + nop |