diff options
author | Steve Chamberlain <steve@cygnus> | 1991-05-21 20:19:08 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-05-21 20:19:08 +0000 |
commit | 55a970944c9ab671924ec71a0589f099f879ef1a (patch) | |
tree | 9183e9ec0930424f83ffcc6034bfab07149bc6d5 /bfd | |
parent | 4dec1c1297fd2dc87039bf089d4071b059708e69 (diff) | |
download | gdb-55a970944c9ab671924ec71a0589f099f879ef1a.zip gdb-55a970944c9ab671924ec71a0589f099f879ef1a.tar.gz gdb-55a970944c9ab671924ec71a0589f099f879ef1a.tar.bz2 |
Removed #define obstack_alloc xmalloc pending correct solution
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/opncls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/opncls.c b/bfd/opncls.c index 32a07c3..fdd7f4b 100644 --- a/bfd/opncls.c +++ b/bfd/opncls.c @@ -51,7 +51,7 @@ FILE *bfd_open_file(); Perhaps, since unix has so many different kinds of locking anyway, we should use the emacs lock scheme?... */ -#define obstack_chunk_alloc xmalloc +#define obstack_chunk_alloc malloc #define obstack_chunk_free free /* Return a new BFD. All BFD's are allocated through this routine. */ |