*** empty log message ***

This commit is contained in:
Ulf Möller 2000-02-23 22:07:59 +00:00
parent 720b590f56
commit 71308c3bb5

View File

@ -65,10 +65,10 @@ print OUT "\n";
print "Checking compiler...\n";
if (open(TEST,">test.c")) {
print TEST "#include <stdio.h>\nmain(){printf(\"Hello world\n\");}\n";
print TEST "#include <stdio.h>\nmain(){printf(\"Hello world\\n\");}\n";
close(TEST);
system("$cc -o cctest test.c");
if (! `./cctest` =~ /Hello world/) {
if (`./cctest` !~ /Hello world/) {
print OUT "Compiler doesn't work.\n";
goto err;
}