source: vendor/gcc/current/libf2c/libF77/setarg.c

Last change on this file was 1391, checked in by bird, 21 years ago

GCC v3.3.3 sources.

  • Property cvs2svn:cvs-rev set to 1.1.1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 246 bytes
Line 
1/* Set up the global argc/argv info for use by getarg_, iargc_, and
2 g77's inlined intrinsic equivalents. */
3
4#include <stdlib.h>
5
6int f__xargc;
7char **f__xargv;
8
9void
10f_setarg (int argc, char **argv)
11{
12 f__xargc = argc;
13 f__xargv = argv;
14}
Note: See TracBrowser for help on using the repository browser.