Add -std=c99 option for gcc

This commit is contained in:
Николай Пузанов 2020-12-13 11:04:53 +03:00
parent 99283a0c7e
commit 56cc2bec54

View File

@ -1,7 +1,7 @@
all: test
test: test.c uprintf.c uprintf.h
gcc -Os -m32 -o test test.c uprintf.c
gcc -std=c99 -Os -m32 -o test test.c uprintf.c
clean:
rm -rf test