exits instead of returns from main (bloody SUN)
authorceriel <none@none>
Mon, 9 Mar 1987 11:45:49 +0000 (11:45 +0000)
committerceriel <none@none>
Mon, 9 Mar 1987 11:45:49 +0000 (11:45 +0000)
lang/pc/pem/move.c

index b2c32ce..2d5f52c 100644 (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)) ;
 }