Revert part of the previous revision. Changing exit() to return() in main()

is wrong, even though our C compiler doesn't understand that exit() eats
control of the program, and as such can sometimes complain that main() reaches
the bottom of its body without an explicit return().

Aside from that, the functional usefulness of changing it is effectively nil,
so back it out.

Submitted by:	mike
This commit is contained in:
jmallett 2002-05-17 11:16:49 +00:00
parent 0f2466f1e0
commit cf82d76919

View File

@ -121,7 +121,7 @@ main(argc, argv)
}
if (rval < 0)
err(1, "read");
return (exitval);
exit(exitval);
}
static void