scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 3a3a4226ead73169c1829d3f9f40a317e88e507f
parent 441d6ffec111cd18ab7baac66b53c99995a2f798
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 26 Oct 2021 18:21:19 +0200

ar: Add whitespace change

Align comments in the file.

Diffstat:
Minclude/scc/scc/ar.h | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/include/scc/scc/ar.h b/include/scc/scc/ar.h @@ -5,11 +5,11 @@ struct ar_hdr { - char ar_name[SARNAM]; /* name */ - char ar_date[12]; /* modification time */ - char ar_uid[6]; /* user id */ - char ar_gid[6]; /* group id */ - char ar_mode[8]; /* octal file permissions */ - char ar_size[10]; /* size in bytes */ - char ar_fmag[2]; /* consistency check */ + char ar_name[SARNAM]; /* name */ + char ar_date[12]; /* modification time */ + char ar_uid[6]; /* user id */ + char ar_gid[6]; /* group id */ + char ar_mode[8]; /* octal file permissions */ + char ar_size[10]; /* size in bytes */ + char ar_fmag[2]; /* consistency check */ };