From 1271f242c654c5a5a4d64bf599e73fada417f62e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 15 Feb 2005 01:42:47 +0000 Subject: some incomplete asm source for x86_64 --- libc/sysdeps/linux/x86_64/crti.S | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 libc/sysdeps/linux/x86_64/crti.S (limited to 'libc/sysdeps/linux/x86_64/crti.S') diff --git a/libc/sysdeps/linux/x86_64/crti.S b/libc/sysdeps/linux/x86_64/crti.S new file mode 100644 index 000000000..6a29f2bc0 --- /dev/null +++ b/libc/sysdeps/linux/x86_64/crti.S @@ -0,0 +1,14 @@ +/* glibc's sysdeps/x86_64/elf/initfini.c used for reference [PROLOG] */ + +.section .init +.globl _init +.type _init, @function +_init: + subq $8, %rsp + + +.section .fini +.globl _fini +.type _fini, @function +_fini: + subq $8, %rsp -- cgit v1.2.3