diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-05-27 21:52:19 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-05-27 21:52:19 -0400 |
commit | cb9185b1948110dcf4c6483db44163fbc5ea942f (patch) | |
tree | 469213483259d8082a1c6a2f407901fec8ac37c4 /Makefile | |
parent | d28aac66dca51fdd6d1683e90d9285c97ffa1e70 (diff) |
getline written to comply to c99
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ .POSIX: OBJS = strbst.o ll.o nodelink.o read.o main.o CFLAGS = -Wall -pedantic -CC = gcc +CC = c99 tmplt: $(OBJS) $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@ clean: |