exits instead of returns from main (bloody SUN)

This commit is contained in:
ceriel 1987-03-09 11:45:49 +00:00
parent 236c6c40f0
commit dea6cc76e3

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)) ;
}