diff options
author | Steve Ellcey <sje@cup.hp.com> | 2005-07-01 15:19:47 +0000 |
---|---|---|
committer | Steve Ellcey <sje@cup.hp.com> | 2005-07-01 15:19:47 +0000 |
commit | 398ee8f162e94e0808230e60ea153d16de7755b0 (patch) | |
tree | 986df224d87b1c277426ea29075c589390abc175 /binutils/objdump.c | |
parent | bba93f6c2ce393e9c3c02ef3f518b242f62e2b55 (diff) | |
download | gdb-398ee8f162e94e0808230e60ea153d16de7755b0.zip gdb-398ee8f162e94e0808230e60ea153d16de7755b0.tar.gz gdb-398ee8f162e94e0808230e60ea153d16de7755b0.tar.bz2 |
* configure.in (AM_BINUTILS_WARNINGS): Add.
(BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
* configure: Regenerate.
* config.in: Regenerate.
* objdump.c (NEED_DECLARATION_*): Replace with !HAVE_DECL_*.
* bucomm.h: (NEED_DECLARATION_*): Ditto.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r-- | binutils/objdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c index e598a23..195b9c1 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -65,7 +65,7 @@ #define BYTES_IN_WORD 32 #include "aout/aout64.h" -#ifdef NEED_DECLARATION_FPRINTF +#if !HAVE_DECL_FPRINTF /* This is needed by init_disassemble_info(). */ extern int fprintf (FILE *, const char *, ...); #endif |