diff options
author | Steve Chamberlain <steve@cygnus> | 1991-05-21 15:59:33 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-05-21 15:59:33 +0000 |
commit | 3b69c2cc9172685c076216ebb2577d9b86c799ca (patch) | |
tree | db64a06f6d9e70851a1e4d339e674f79bc12977e /bfd/opncls.c | |
parent | 4b3720f441d038d84f87263927754f8c7c5faab2 (diff) | |
download | gdb-3b69c2cc9172685c076216ebb2577d9b86c799ca.zip gdb-3b69c2cc9172685c076216ebb2577d9b86c799ca.tar.gz gdb-3b69c2cc9172685c076216ebb2577d9b86c799ca.tar.bz2 |
Changed obstack_chunk_alloc to xmalloc
Diffstat (limited to 'bfd/opncls.c')
-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 fdd7f4b..32a07c3 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 malloc +#define obstack_chunk_alloc xmalloc #define obstack_chunk_free free /* Return a new BFD. All BFD's are allocated through this routine. */ |