aboutsummaryrefslogtreecommitdiff
path: root/libc/crt/crti.asm
diff options
context:
space:
mode:
authorMarvin Borner2020-08-21 23:08:16 +0200
committerMarvin Borner2020-08-21 23:08:16 +0200
commit94de27efb7f9f97d162c1cd6b0a2bb89e3fe555f (patch)
treeb2ae93419138cd0af46559b0b1f1a03862d62242 /libc/crt/crti.asm
parentf700ba6668dbdb91a03b2c5aa387eb4cabae8fcd (diff)
Finished proper return of processes
Diffstat (limited to 'libc/crt/crti.asm')
-rw-r--r--libc/crt/crti.asm13
1 files changed, 0 insertions, 13 deletions
diff --git a/libc/crt/crti.asm b/libc/crt/crti.asm
deleted file mode 100644
index 394aaea..0000000
--- a/libc/crt/crti.asm
+++ /dev/null
@@ -1,13 +0,0 @@
-; MIT License, Copyright (c) 2020 Marvin Borner
-
-section .init
-global _init
-_init:
- push ebp
- mov ebp, esp
-
-section .fini
-global _fini
-fini:
- push ebp
- mov ebp, esp