diff options
author | cflip <cflip@cflip.net> | 2023-05-29 22:11:13 -0600 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2023-05-29 22:23:21 -0600 |
commit | fca0a3d5d8ea1e9af4411ef03181b4c23534474b (patch) | |
tree | 6a957eaca6d59466cf61e5df5736b758c735099f | |
parent | beb8db73aadbd7d0464f1530ef86c961bc1aa2a0 (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |