diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-01 01:53:53 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-01 01:53:53 +0000 |
commit | 0bdeb43b6275adf3cf3dbde04107722c638a3743 (patch) | |
tree | 693a2481f59e62982389a205d2b15b5bfa3e0b2b /libf2c/libF77/setarg.c | |
parent | caa6c56774eb62227337101cbb7e007e2f6f9de6 (diff) | |
download | gcc-0bdeb43b6275adf3cf3dbde04107722c638a3743.tar.gz |
* libF77/*: Delete KR_headers cruft.
* libI77/*: Likewise.
* libU77/*: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54132 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libf2c/libF77/setarg.c')
-rw-r--r-- | libf2c/libF77/setarg.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libf2c/libF77/setarg.c b/libf2c/libF77/setarg.c index 929860aeef3..83aedaf5fb7 100644 --- a/libf2c/libF77/setarg.c +++ b/libf2c/libF77/setarg.c @@ -1,10 +1,8 @@ /* Set up the global argc/argv info for use by getarg_, iargc_, and g77's inlined intrinsic equivalents. */ -#ifndef KR_headers #undef VOID #include <stdlib.h> -#endif #ifndef VOID #define VOID void @@ -18,11 +16,7 @@ char **f__xargv; #endif void -#ifdef KR_headers -f_setarg(argc, argv) int argc; char **argv; -#else f_setarg(int argc, char **argv) -#endif { f__xargc = argc; f__xargv = argv; |