From 8e79ceaa7d3995df5a5dcf0ffdbd52ebe4c52163 Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Sun, 9 Jan 2022 18:50:48 +0100 Subject: Indentation --- src/as/crti.s | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/as/crti.s') 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. */ -- cgit v1.2.3