bb232301e4
- Remove gcc-z9 wrapper which is obsolete. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gcc?expand=0&rev=45
5 lines
154 B
Bash
5 lines
154 B
Bash
#!/bin/sh
|
|
# Despite asking for a c99 compiler allow GNU extensions to work
|
|
# as we are on a GNU/Linux system anyway
|
|
exec /usr/bin/c99 -xc -std=gnu99 "$@"
|