diff options
author | Jim Meyering <jim@meyering.net> | 1997-02-02 20:11:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-02-02 20:11:54 +0000 |
commit | b63df62ce195d7ec333f21ac18379dc30e5e5297 (patch) | |
tree | 0f6806c3ed76f55e2d354b6f6c7a953afefba249 /src | |
parent | ff323743c504bc627b233694b5f76b2740a269ec (diff) | |
download | coreutils-b63df62ce195d7ec333f21ac18379dc30e5e5297.tar.xz |
[obstack_chunk_alloc]: Define to malloc, not xmalloc
to work better with new obstack functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ #include "argmatch.h" #include "xstrtol.h" -#define obstack_chunk_alloc xmalloc +#define obstack_chunk_alloc malloc #define obstack_chunk_free free #ifndef INT_MAX |