From 17630b4cb37f3a15f7d7524c15c1700d4a1bd932 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Fri, 14 Oct 2016 11:09:56 +0100 Subject: [PATCH] [SDL] changed to c99 standard c89 does not support long long, flagging an error --- sdl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdl/Makefile b/sdl/Makefile index 6134e52..85678b5 100644 --- a/sdl/Makefile +++ b/sdl/Makefile @@ -22,7 +22,7 @@ NAME = gen_sdl.exe CC = gcc -CFLAGS = `sdl-config --cflags` -march=i686 -O6 -fomit-frame-pointer -Wall -Wno-strict-aliasing -ansi -std=c89 -pedantic-errors +CFLAGS = `sdl-config --cflags` -march=i686 -O6 -fomit-frame-pointer -Wall -Wno-strict-aliasing -ansi -std=c99 -pedantic-errors #-g -ggdb -pg #-fomit-frame-pointer #LDFLAGS = -pg