diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-11-06 20:59:44 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-11-06 20:59:44 +0000 |
commit | 92c71a0b0d796e7a365c3a48ac22ded310b26dda (patch) | |
tree | 8590599886ceed762327d7530f313edf43959884 /ld | |
parent | 219555a64deb263af261ff2f086be1693e0ed68b (diff) | |
download | gdb-92c71a0b0d796e7a365c3a48ac22ded310b26dda.zip gdb-92c71a0b0d796e7a365c3a48ac22ded310b26dda.tar.gz gdb-92c71a0b0d796e7a365c3a48ac22ded310b26dda.tar.bz2 |
* configure.in: Add test for whether free must be declared.
* sysdep.h: Declare free if necessary. Include "ansidecl.h".
* acconfig.h: Explain NEED_DECLARATION_FREE.
* configure, config.in: Rebuild.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/acconfig.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 406c0e5..c76d425 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,10 @@ Mon Nov 6 10:59:21 1995 Ian Lance Taylor <ian@cygnus.com> + * configure.in: Add test for whether free must be declared. + * sysdep.h: Declare free if necessary. Include "ansidecl.h". + * acconfig.h: Explain NEED_DECLARATION_FREE. + * configure, config.in: Rebuild. + * lexsup.c (parse_args): Take B:: out of shortopts. Sun Nov 5 03:08:28 1995 Ken Raeburn <raeburn@cygnus.com> diff --git a/ld/acconfig.h b/ld/acconfig.h index a56a897..930d663 100644 --- a/ld/acconfig.h +++ b/ld/acconfig.h @@ -1,2 +1,5 @@ /* Do we need to use the b modifier when opening binary files? */ #undef USE_BINARY_FOPEN + +/* Whether free must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_FREE |