diff options
Diffstat (limited to 'gnu/lib/libf2c/libF77/setarg.c')
-rw-r--r-- | gnu/lib/libf2c/libF77/setarg.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gnu/lib/libf2c/libF77/setarg.c b/gnu/lib/libf2c/libF77/setarg.c deleted file mode 100644 index 49515746f48..00000000000 --- a/gnu/lib/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; -} |