summaryrefslogtreecommitdiff
path: root/src/as/crti.s
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2022-01-09 18:50:48 +0100
committerAleksa Vučković <aleksav013@gmail.com>2022-01-10 22:36:52 +0100
commit8e79ceaa7d3995df5a5dcf0ffdbd52ebe4c52163 (patch)
tree60424b081f4a3e37e0c87dfa764ea559f1ba0543 /src/as/crti.s
parentdbbb74c22f42df9175eaea72c1eb12d6deab332c (diff)
Indentation
Diffstat (limited to 'src/as/crti.s')
-rw-r--r--src/as/crti.s12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/as/crti.s b/src/as/crti.s
index 30dd4ea..5894e2d 100644
--- a/src/as/crti.s
+++ b/src/as/crti.s
@@ -3,14 +3,14 @@
.global _init
.type _init, @function
_init:
- push %ebp
- movl %esp, %ebp
- /* gcc will nicely put the contents of crtbegin.o's .init section here. */
+ push %ebp
+ movl %esp, %ebp
+ /* gcc will nicely put the contents of crtbegin.o's .init section here. */
.section .fini
.global _fini
.type _fini, @function
_fini:
- push %ebp
- movl %esp, %ebp
- /* gcc will nicely put the contents of crtbegin.o's .fini section here. */
+ push %ebp
+ movl %esp, %ebp
+ /* gcc will nicely put the contents of crtbegin.o's .fini section here. */