diff options
author | Jim Meyering <jim@meyering.net> | 1997-02-02 20:10:11 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-02-02 20:10:11 +0000 |
commit | ff323743c504bc627b233694b5f76b2740a269ec (patch) | |
tree | ec4ad4f2e7d57d9d86ecbf81cf93c2a2baa52c6e | |
parent | 50d2bb5b7b8ce635e79154975eec7cda31b38928 (diff) | |
download | coreutils-ff323743c504bc627b233694b5f76b2740a269ec.tar.xz |
[obstack_chunk_alloc]: Define to malloc, not xmalloc
to work better with new obstack functions.
-rw-r--r-- | src/dircolors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dircolors.c b/src/dircolors.c index 405406fc9..c47165012 100644 --- a/src/dircolors.c +++ b/src/dircolors.c @@ -32,7 +32,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "obstack.h" #include "dircolors.h" -#define obstack_chunk_alloc xmalloc +#define obstack_chunk_alloc malloc #define obstack_chunk_free free #ifndef STDC_HEADERS |