Fix coding style

It was about damn time. Consistency is very important in such a
big codebase.
This commit is contained in:
FRIGN
2014-11-13 18:29:30 +01:00
committed by sin
parent e35d9e62a5
commit eee98ed3a4
70 changed files with 622 additions and 557 deletions

5
echo.c
View File

@@ -2,6 +2,7 @@
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "util.h"
static void
@@ -23,9 +24,9 @@ main(int argc, char *argv[])
usage();
} ARGEND;
for(; argc > 0; argc--, argv++)
for (; argc > 0; argc--, argv++)
putword(argv[0]);
if(!nflag)
if (!nflag)
putchar('\n');
return 0;