exits instead of returns from main (bloody SUN)

This commit is contained in:
ceriel 1987-03-09 11:45:49 +00:00
parent 1967215f54
commit 498f1d30f0

View File

@ -16,5 +16,5 @@ main(argc) {
sprintf(copy,"cp pem%d%d.m pem.m", EM_WSIZE, EM_PSIZE) ;
printf("%s\n",copy) ;
return system(copy) ;
exit(system(copy)) ;
}