diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-08-07 18:17:22 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-08-07 18:17:22 +0000 |
commit | 85fe9d3e46ca45f86886f8baf9aa21fa6ec2ece7 (patch) | |
tree | 5054edba8eaf694373f8117dded029b5444d0b8b /bfd/acconfig.h | |
parent | e0effbaea236639919e9257d7a44397c12461669 (diff) | |
download | gdb-85fe9d3e46ca45f86886f8baf9aa21fa6ec2ece7.zip gdb-85fe9d3e46ca45f86886f8baf9aa21fa6ec2ece7.tar.gz gdb-85fe9d3e46ca45f86886f8baf9aa21fa6ec2ece7.tar.bz2 |
Wed Aug 7 14:11:44 1996 Philippe De Muyter <phdm@info.ucl.ac.be>
* configure.in: Call BFD_NEEDED_DECLARATION on strstr and
realloc.
* acconfig.h (NEED_DECLARATION_STRSTR): New macro.
(NEED_DECLARATION_REALLOC): New macro.
* configure, config.in: Rebuild.
* sysdep.h (strstr): Declare if NEED_DECLARATION_STRSTR.
(realloc): Declare if NEED_DECLARATION_REALLOC.
Diffstat (limited to 'bfd/acconfig.h')
-rw-r--r-- | bfd/acconfig.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/acconfig.h b/bfd/acconfig.h index 647798c..496c0ae 100644 --- a/bfd/acconfig.h +++ b/bfd/acconfig.h @@ -1,7 +1,13 @@ +/* Whether strstr must be declared even if <string.h> is included. */ +#undef NEED_DECLARATION_STRSTR + /* Whether malloc must be declared even if <stdlib.h> is included. */ #undef NEED_DECLARATION_MALLOC +/* Whether realloc must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_REALLOC + /* Whether free must be declared even if <stdlib.h> is included. */ #undef NEED_DECLARATION_FREE @TOP@ |