config.mk: C89 -> C99 - farbfeld - suckless image format with conversion tools | |
git clone git://git.suckless.org/farbfeld | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 4ee1dee12fc4680504cb0a75c4b8a6862fd38db2 | |
parent cef01ad97b1e215b0879c369e42e31bb3e5188a1 | |
Author: Laslo Hunhold <[email protected]> | |
Date: Sun, 2 Apr 2017 20:56:15 +0200 | |
config.mk: C89 -> C99 | |
We are using stdint.h, which is a C99 feature. Syntactically, the code | |
is C89 though. | |
Diffstat: | |
M config.mk | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/config.mk b/config.mk | |
@@ -9,7 +9,7 @@ MANPREFIX = ${PREFIX}/man | |
# flags | |
CPPFLAGS = -D_DEFAULT_SOURCE | |
-CFLAGS = -std=c89 -pedantic -Wall -Os | |
+CFLAGS = -std=c99 -pedantic -Wall -Os | |
LDFLAGS = -s | |
png2ff-LDFLAGS = -lpng |