C compilation script: tell GCC to use C99 mode.

This commit is contained in:
Adrien Guatto 2010-06-28 15:18:16 +02:00
parent ff07d77667
commit 04fcf5a826
1 changed files with 1 additions and 1 deletions

View File

@ -24,4 +24,4 @@ if [ $compile -eq 1 ]; then
fi
# Compile it with GCC
cc $REP/*.c -o `basename $F .ept` || exit 1
cc -std=c99 $REP/*.c -o `basename $F .ept` || exit 1