diff options
author | John Gilmore <gnu@cygnus> | 1991-05-03 19:25:38 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-05-03 19:25:38 +0000 |
commit | 9c2f3ceeb4f758e71937ca6dabd8cc77e3de468f (patch) | |
tree | 96ff765a64cc20248dc4021c57b6fc082ce602bf /bfd/opncls.c | |
parent | 09a98ceeceb3b247bb659dee0182af070b049f13 (diff) | |
download | gdb-9c2f3ceeb4f758e71937ca6dabd8cc77e3de468f.zip gdb-9c2f3ceeb4f758e71937ca6dabd8cc77e3de468f.tar.gz gdb-9c2f3ceeb4f758e71937ca6dabd8cc77e3de468f.tar.bz2 |
Avoid making a machine-dependent (probably wrong) declaration of malloc
and free. Depend on the sysdep.h file to do that for us.
Diffstat (limited to 'bfd/opncls.c')
-rw-r--r-- | bfd/opncls.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bfd/opncls.c b/bfd/opncls.c index 9dbcfcf..9b91c2f 100644 --- a/bfd/opncls.c +++ b/bfd/opncls.c @@ -51,8 +51,6 @@ FILE *bfd_open_file(); Perhaps, since unix has so many different kinds of locking anyway, we should use the emacs lock scheme?... */ -extern PTR malloc(); -extern void free(); #define obstack_chunk_alloc malloc #define obstack_chunk_free free |