commit 4ee1dee12fc4680504cb0a75c4b8a6862fd38db2
Author: Laslo Hunhold <[email protected]>
AuthorDate: Sun Apr 2 20:56:15 2017 +0200
Commit: Laslo Hunhold <[email protected]>
CommitDate: Sun Apr 2 20:56:15 2017 +0200
config.mk: C89 -> C99
We are using stdint.h, which is a C99 feature. Syntactically, the code
is C89 though.
diff --git a/config.mk b/config.mk
index d5bc6c7..4cd5ce2 100644
--- 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