aboutsummaryrefslogtreecommitdiffstats
path: root/config.c
diff options
context:
space:
mode:
authorBert Münnich <ber.t@gmx.com>2011-10-13 16:50:06 +0200
committerBert Münnich <ber.t@gmx.com>2011-10-13 16:50:06 +0200
commit4383a651c733ac59cd00f193c5115567f6a72f5d (patch)
tree081c4c4f13da21379e4d96a70734e945e6305ca3 /config.c
parenta09b20c5e63839b10bae306e4a23ca5a9d8ebac0 (diff)
downloadnsxiv-4383a651c733ac59cd00f193c5115567f6a72f5d.tar.zst
Strictly adhere to ANSI-C standard
Diffstat (limited to 'config.c')
-rw-r--r--config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.c b/config.c
index d040b94..c7e1df0 100644
--- a/config.c
+++ b/config.c
@@ -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;
}