Fix for C89 compatibility

This commit is contained in:
Николай Пузанов
2020-12-13 11:29:15 +03:00
parent ba79eaf7f4
commit 60245f9da0
3 changed files with 5 additions and 5 deletions

View File

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