From: ceriel Date: Mon, 9 Mar 1987 11:45:49 +0000 (+0000) Subject: exits instead of returns from main (bloody SUN) X-Git-Tag: release-5-5~4489 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=dea6cc76e3c02000610bd75ccdce63faf025404c;p=ack.git exits instead of returns from main (bloody SUN) --- diff --git a/lang/pc/pem/move.c b/lang/pc/pem/move.c index b2c32ce1c..2d5f52c7d 100644 --- a/lang/pc/pem/move.c +++ b/lang/pc/pem/move.c @@ -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)) ; }