aboutsummaryrefslogtreecommitdiff
path: root/libf2c/libF77/setarg.c
diff options
context:
space:
mode:
authorToon Moene <toon@moene.indiv.nluug.nl>2004-07-15 18:52:49 +0200
committerToon Moene <toon@gcc.gnu.org>2004-07-15 16:52:49 +0000
commit3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9 (patch)
tree5f8cfd6717d2fc2edd87b592618718293587582c /libf2c/libF77/setarg.c
parent48b456474c69a132da15996c61009e35efa59492 (diff)
downloadgcc-3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9.zip
gcc-3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9.tar.gz
gcc-3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9.tar.bz2
libf2c: Removed.
2004-07-15 Toon Moene <toon@moene.indiv.nluug.nl> * libf2c: Removed. * gcc/gccbug.in: Updated because of libf2c removal. * maintainer-scripts/gcc_release: Ditto. From-SVN: r84759
Diffstat (limited to 'libf2c/libF77/setarg.c')
-rw-r--r--libf2c/libF77/setarg.c14
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;
-}