]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/libf2c/libF77/setarg.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / contrib / libf2c / libF77 / setarg.c
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
6 int f__xargc;
7 char **f__xargv;
8
9 void
10 f_setarg (int argc, char **argv)
11 {
12   f__xargc = argc;
13   f__xargv = argv;
14 }