Revert "Make examples' shebang use target tcc bindir path"

This reverts commit cb2138f8b0.
This commit is contained in:
Thomas Preud'homme
2011-07-07 12:14:08 +02:00
parent 4d6a4a26e0
commit 571465d32b
4 changed files with 7 additions and 14 deletions

8
examples/ex1.c Executable file
View File

@ -0,0 +1,8 @@
#! /usr/local/bin/tcc -run
#include <tcclib.h>
int main()
{
printf("Hello World\n");
return 0;
}