bootstrap: Bump to version 3.32
[dragora.git] / archive / gcc / c99
blob8b71a3228bfe4e0a204010eb7835f73d009d9455
1 #! /bin/sh -
3 # Script borrowed from Fedora, slightly adapted
4 # for Dragora GNU/Linux-Libre.
6 default_flag="-std=c99"
8 for option in "$@"
9 do
10 case $option in
11 -std=c99 | -std=c9x | -std=iso9899:1999 | -std=iso9899:199x )
12 default_flag=""
14 -std=*)
15 echo "`basename -- "$0"` called with non ISO C99 option $option" 1>&2
16 exit 1
18 esac
19 done
21 exec gcc $default_flag ${1+"$@"}