_gfortran_set_args — Save command-line arguments ¶_gfortran_set_args saves the command-line arguments; this
initialization is required if any of the command-line intrinsics
is called.  Additionally, it shall be called if backtracing is
enabled (see _gfortran_set_options).
void _gfortran_set_args (int argc, char *argv[])
| argc | number of command line argument strings | 
| argv | the command-line argument strings; argv[0] is the pathname of the executable itself. | 
int main (int argc, char *argv[])
{
  /* Initialize libgfortran.  */
  _gfortran_set_args (argc, argv);
  return 0;
}