about summary refs log tree commit diff
path: root/crt/i386/crt1.s
diff options
context:
space:
mode:
Diffstat (limited to 'crt/i386/crt1.s')
-rw-r--r--crt/i386/crt1.s19
1 files changed, 0 insertions, 19 deletions
diff --git a/crt/i386/crt1.s b/crt/i386/crt1.s
deleted file mode 100644
index f5b4f4fd..00000000
--- a/crt/i386/crt1.s
+++ /dev/null
@@ -1,19 +0,0 @@
-.weak _init
-.weak _fini
-.text
-.global _start
-_start:
-	xor %ebp,%ebp
-	pop %ecx
-	mov %esp,%eax
-	and $-16,%esp
-	push %esp
-	push %esp
-	push %edx
-	push $_fini
-	push $_init
-	push %eax
-	push %ecx
-	push $main
-	call __libc_start_main
-1:	jmp 1b