From b3d12c0a9d075baae55c9922e82eb6af173e788b Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Fri, 19 Jun 2020 10:53:19 +0200 Subject: Der Code benötigt nur C99, nicht C11. Fixe das in der makefile. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 9981ebf..0564f60 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ all: csv-test seq-read CC=cc -CFLAGS=-Wall -Wextra -pedantic -std=c11 -O2 +CFLAGS=-Wall -Wextra -pedantic -std=c99 -O2 csv-test: csv-test.c csv.c csv.h $(CC) $(CFLAGS) -o $@ csv-test.c csv.c -- cgit v1.3