diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-05-23 17:42:19 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-05-23 17:42:19 +0000 |
commit | f31e826ba314bc910beec6de5bf534f2462a00c7 (patch) | |
tree | 2d8c701cdb99568d7922c37d21a7fda0f8ea9913 /gcc/toplev.c | |
parent | 04de731462db7abf438903fa71b850ac046f1067 (diff) | |
download | gcc-f31e826ba314bc910beec6de5bf534f2462a00c7.zip gcc-f31e826ba314bc910beec6de5bf534f2462a00c7.tar.gz gcc-f31e826ba314bc910beec6de5bf534f2462a00c7.tar.bz2 |
getopt.h (getopt): Also check HAVE_DECL_* when prototyping.
include:
* getopt.h (getopt): Also check HAVE_DECL_* when prototyping.
* libiberty.h (basename): Likewise.
gcc:
* aclocal.m4 (gcc_AC_CHECK_DECL, gcc_AC_CHECK_DECLS): New macros
rewritten from the internals of gcc_AC_NEED_DECLARATION{S}.
* configure.in (gcc_AC_CHECK_DECLS): Call this instead of
gcc_AC_NEED_DECLARATIONS.
* dwarfout.c: Don't prototype time().
* gcc.c: Check HAVE_DECL_* instead of NEED_DECLARATION_*.
* system.h: Likewise.
* toplev.c: Likewise.
From-SVN: r34108
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 6a4f598..4b13570 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -145,7 +145,7 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE! #define PREFERRED_DEBUGGING_TYPE NO_DEBUG #endif -#ifdef NEED_DECLARATION_ENVIRON +#if defined (HAVE_DECL_ENVIRON) && !HAVE_DECL_ENVIRON extern char **environ; #endif |