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/sysdep.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/sysdep.h')
-rw-r--r-- | bfd/sysdep.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/bfd/sysdep.h b/bfd/sysdep.h index dd8146a..4a0b821 100644 --- a/bfd/sysdep.h +++ b/bfd/sysdep.h @@ -46,7 +46,6 @@ extern int errno; #else extern char *strchr (); extern char *strrchr (); -extern char *strstr (); #endif #endif @@ -54,11 +53,11 @@ extern char *strstr (); #include <stdlib.h> #endif -#if TIME_WITH_SYS_TIME +#ifdef TIME_WITH_SYS_TIME #include <sys/time.h> #include <time.h> #else -#if HAVE_SYS_TIME_H +#ifdef HAVE_SYS_TIME_H #include <sys/time.h> #else #include <time.h> @@ -103,10 +102,18 @@ extern char *strstr (); #define SEEK_CUR 1 #endif +#ifdef NEED_DECLARATION_STRSTR +extern char *strstr (); +#endif + #ifdef NEED_DECLARATION_MALLOC extern PTR malloc (); #endif +#ifdef NEED_DECLARATION_REALLOC +extern PTR realloc (); +#endif + #ifdef NEED_DECLARATION_FREE extern void free (); #endif |