Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / tests / hello-world.in
1 #!/bin/sh
2 # $Id$
3 cat <<FOO > foo.c
4 int main() { return 0; }
5 FOO
6 %CC% -o foo foo.c || exit 1
7 ./foo || exit 1
8 rm -f foo foo.c