On Sat, 2008-10-18 at 06:00 -0400, William L. Maltby wrote:
<snip>
Ok. 3rd cup of coffee has made its way into various of my systems. A minor correction (but important for us pedantic typers) is below.
main(argc, *argv[]) /* could be **argv instead */
main(int argc, char *argv[]) /* could be **argv instead */
{ /* stuff to do */ . . . }
<snip>