summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2023-05-29 22:11:13 -0600
committercflip <cflip@cflip.net>2023-05-29 22:23:21 -0600
commitfca0a3d5d8ea1e9af4411ef03181b4c23534474b (patch)
tree6a957eaca6d59466cf61e5df5736b758c735099f
parentbeb8db73aadbd7d0464f1530ef86c961bc1aa2a0 (diff)
Don't force C'89 standard
There are a bunch of helpful standard library functions that I am missing out on (most notably popen)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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