[style] mass reformat all the non external code to 4 space indents

Ran everything through scripts/codestyle.space, which uses astyle
to generally follow K&R style.

Biggest non whitespace change is pulling brackets down on function
declarations, which I'm pretty ambivalent about, but astyle insists
on taking a stance
This commit is contained in:
Travis Geiselbrecht
2016-02-14 12:24:01 -08:00
parent 6659d28a4f
commit 2eb32a4369
276 changed files with 11152 additions and 10886 deletions

View File

@@ -64,7 +64,7 @@ static void call_constructors(void)
while (ctor != &__ctor_end) {
void (*func)(void);
func = (void (*)(void))*ctor;
func = (void ( *)(void))*ctor;
func();
ctor++;