From fca0a3d5d8ea1e9af4411ef03181b4c23534474b Mon Sep 17 00:00:00 2001 From: cflip Date: Mon, 29 May 2023 22:11:13 -0600 Subject: Don't force C'89 standard There are a bunch of helpful standard library functions that I am missing out on (most notably popen) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3830dcb..6c59065 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC=gcc LD=gcc -CFLAGS=-Wall -Wextra -pedantic -std=c89 -g +CFLAGS=-Wall -Wextra -pedantic -g LDFLAGS= OBJS=cfws.o file.o http.o net.o -- cgit v1.2.3