From ed2484a3dd45b33533aeb62d8d76ee7afd28b35c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 5 Nov 2003 03:32:14 +0000 Subject: Continue the conversion to using per-arch crti.S and crtn.S --- libc/sysdeps/linux/m68k/crtn.S | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libc/sysdeps/linux/m68k/crtn.S (limited to 'libc/sysdeps/linux/m68k/crtn.S') diff --git a/libc/sysdeps/linux/m68k/crtn.S b/libc/sysdeps/linux/m68k/crtn.S new file mode 100644 index 000000000..d29c02dec --- /dev/null +++ b/libc/sysdeps/linux/m68k/crtn.S @@ -0,0 +1,26 @@ + .file "initfini.c" +#APP + + .section .init +#NO_APP + .align 2 + .globl _init + .type _init, @function +#NO_APP + unlk %a6 + rts + .size _init, .-_init +#APP + + .section .fini +#NO_APP + .align 2 + .globl _fini + .type _fini, @function +#NO_APP + unlk %a6 + rts + .size _fini, .-_fini +#APP + + .ident "GCC: (GNU) 3.3.2" -- cgit v1.2.3