diff options
Diffstat (limited to 'LibC/crti.S')
-rw-r--r-- | LibC/crti.S | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/LibC/crti.S b/LibC/crti.S new file mode 100644 index 0000000000..a67c77c71c --- /dev/null +++ b/LibC/crti.S @@ -0,0 +1,9 @@ +.global _init +.section .init +_init: + push %ebp + +.global _fini +.section .fini +_fini: + push %ebp |