Use -std=c99 instead of -std=c11

This commit is contained in:
Stefan Arentz 2016-11-16 22:41:33 -05:00
parent a5b5a887b5
commit 3fb4b362d8

View File

@ -1,6 +1,6 @@
CC=cc
CFLAGS=-O3 -std=c11 -Werror -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes
CFLAGS=-O3 -std=c99 -Werror -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes
SOURCES=cpu.c ins.c pia.c mem.c ewm.c
OBJECTS=$(SOURCES:.c=.o)
LIBS=-lcurses