lua.c has changed the prototype for main from/to
<! int main (int argc, char *argv[]) { //5.0
!> int main (int argc, char **argv) { //5.1
I am curious. Can someone explain the pros/cons of these
two. I have been using the 5.0 form for as long as I can remember.
DB