C compilation script: tell GCC to use C99 mode.
This commit is contained in:
parent
ff07d77667
commit
04fcf5a826
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue