From 2ef22d228f8760561b8f485f0997ca07fafd0f12 Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Fri, 2 Oct 2020 17:42:09 -0500 Subject: [PATCH] remove ansi flag for compiler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1c81d4d..8b6fe1b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC = gcc -CCFLAGS = -ansi -Wall -Wshadow -O2 +CCFLAGS = -Wall -Wshadow -O2 LFLAGS = -lm .PHONY = all clean