diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-05 03:32:14 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-05 03:32:14 +0000 |
commit | ed2484a3dd45b33533aeb62d8d76ee7afd28b35c (patch) | |
tree | 4eec315bc61f749259f5f7ac0eba23d5d4b11029 /libc/sysdeps/linux/m68k/crti.S | |
parent | 004623ebcc71eb9833dbb438fb9fb71871173c75 (diff) |
Continue the conversion to using per-arch crti.S and crtn.S
Diffstat (limited to 'libc/sysdeps/linux/m68k/crti.S')
-rw-r--r-- | libc/sysdeps/linux/m68k/crti.S | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/m68k/crti.S b/libc/sysdeps/linux/m68k/crti.S new file mode 100644 index 000000000..ccfe99133 --- /dev/null +++ b/libc/sysdeps/linux/m68k/crti.S @@ -0,0 +1,27 @@ + .file "initfini.c" +#APP + + .section .init +#NO_APP + .align 2 + .globl _init + .type _init, @function +_init: + link.w %a6,#0 +#APP + + .align 2 + + + .section .fini +#NO_APP + .align 2 + .globl _fini + .type _fini, @function +_fini: + link.w %a6,#0 +#APP + .align 2 + + + .ident "GCC: (GNU) 3.3.2" |