5 lines
154 B
Plaintext
5 lines
154 B
Plaintext
|
#!/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 "$@"
|