* cppfiles.c (_cpp_execute_include): Move `len` initialisation
[official-gcc.git] / libf2c / libF77 / setarg.c
blob929860aeef3aa70c008af0efc3c853848bf8dcac
1 /* Set up the global argc/argv info for use by getarg_, iargc_, and
2 g77's inlined intrinsic equivalents. */
4 #ifndef KR_headers
5 #undef VOID
6 #include <stdlib.h>
7 #endif
9 #ifndef VOID
10 #define VOID void
11 #endif
13 int f__xargc;
14 char **f__xargv;
16 #ifdef __cplusplus
18 #endif
20 void
21 #ifdef KR_headers
22 f_setarg(argc, argv) int argc; char **argv;
23 #else
24 f_setarg(int argc, char **argv)
25 #endif
27 f__xargc = argc;
28 f__xargv = argv;