tcc-stupidos/examples/ex1.c.template
Thomas Preud'homme cb2138f8b0 Make examples' shebang use target tcc bindir path
Use @BINDIR@ in shebang of examples to put the right path on the target
system. That is, use #!/usr/local/bin/tcc if tcc is installed in /usr/local/bin
and #!/usr/bin/tcc if tcc is installed in /usr/bin/tcc.
2011-06-18 00:45:20 +02:00

8 lines
100 B
C

#! @BINDIR@/tcc -run
#include <tcclib.h>
int main()
{
printf("Hello World\n");
return 0;
}