Minor nit; return(foo) from main rather than exit(foo).

This commit is contained in:
Mark Murray 2002-04-28 14:04:24 +00:00
parent 5d09098835
commit 6c28b67b1e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95657

View File

@ -29,5 +29,5 @@ char *argv[];
for (; optind < argc; optind++)
printf(" %s", argv[optind]);
printf("\n");
exit(status);
return status;
}