diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-07 16:54:00 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-07 16:54:00 -0700 |
commit | 969d111ea2542d2f4c593c4947a42f778675b324 (patch) | |
tree | 27c49ec646568f30cc05c57885491c0a67d576b9 | |
parent | bbe290484ba90962d9cce88fb499a2d43a87214b (diff) | |
download | cproc-969d111ea2542d2f4c593c4947a42f778675b324.tar.xz |
config.def.h: Remove extra indent
-rw-r--r-- | config.def.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/config.def.h b/config.def.h index a727662..99b1360 100644 --- a/config.def.h +++ b/config.def.h @@ -12,26 +12,26 @@ static char *endfiles[] = { }; static char *preprocesscmd[] = { - "cpp", "-P", + "cpp", "-P", - /* specify the GNU C extensions we support */ - "-U", "__GNUC__", "-D", "__GNUC__=3", - "-U", "__GNUC_MINOR__", "-D", "__GNUC_MINOR__=3", + /* specify the GNU C extensions we support */ + "-U", "__GNUC__", "-D", "__GNUC__=3", + "-U", "__GNUC_MINOR__", "-D", "__GNUC_MINOR__=3", - /* prevent glibc from using statement expressions for assert */ - "-D", "__STRICT_ANSI__", + /* prevent glibc from using statement expressions for assert */ + "-D", "__STRICT_ANSI__", - /* required for glibc headers */ - "-D", "__restrict=restrict", - "-D", "__extension__=", - "-D", "__attribute__(x)=", - "-D", "__asm__(x)=", + /* required for glibc headers */ + "-D", "__restrict=restrict", + "-D", "__extension__=", + "-D", "__attribute__(x)=", + "-D", "__asm__(x)=", - /* required for kernel headers */ - "-D", "__signed__=signed", + /* required for kernel headers */ + "-D", "__signed__=signed", - /* required for binutils */ - "-D", "__alignof__=_Alignof", + /* required for binutils */ + "-D", "__alignof__=_Alignof", }; static char *compilecmd[] = {"cc-qbe"}; static char *codegencmd[] = {"qbe"}; |