commit 786e7014551033b36400018ca0386d7638568402 parent 7f9396087b7378a3afce69c99e3f64465b4af0e7 Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Wed, 6 May 2020 09:10:18 +0200 Specify c99 standard to c compiler Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -22,7 +22,7 @@ DOC = \ README.md\ LICENSE -HERE_CFLAGS = ${CFLAGS} -O2 -g +HERE_CFLAGS = ${CFLAGS} -O2 -g -std=c99 HERE_LDFLAGS = ${LDFLAGS} -lm -g GLOBALCONST = -DVERSION=\"${VERSION}\"