diff options
Diffstat (limited to 'libf2c/libF77/setarg.c')
-rw-r--r-- | libf2c/libF77/setarg.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libf2c/libF77/setarg.c b/libf2c/libF77/setarg.c deleted file mode 100644 index 4951574..0000000 --- a/libf2c/libF77/setarg.c +++ /dev/null @@ -1,14 +0,0 @@ -/* Set up the global argc/argv info for use by getarg_, iargc_, and - g77's inlined intrinsic equivalents. */ - -#include <stdlib.h> - -int f__xargc; -char **f__xargv; - -void -f_setarg (int argc, char **argv) -{ - f__xargc = argc; - f__xargv = argv; -} |