diff options
author | Bert Münnich <ber.t@gmx.com> | 2011-10-13 16:50:06 +0200 |
---|---|---|
committer | Bert Münnich <ber.t@gmx.com> | 2011-10-13 16:50:06 +0200 |
commit | 4383a651c733ac59cd00f193c5115567f6a72f5d (patch) | |
tree | 081c4c4f13da21379e4d96a70734e945e6305ca3 /config.c | |
parent | a09b20c5e63839b10bae306e4a23ca5a9d8ebac0 (diff) |
Strictly adhere to ANSI-C standard
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ #define PUT_MACRO(m) \ printf(" -D%s=%s", #m, QUOTE(m)) -inline int puts_if(const char *s, int c) { +int puts_if(const char *s, int c) { return c ? printf(" %s", s) : 0; } |