diff options
| author | Elijah Newren <newren@gmail.com> | 2023-02-24 00:09:24 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-02-23 17:25:28 -0800 |
| commit | 36bf19589055fb71aac0ed6719dfe5b385adc2bf (patch) | |
| tree | 7763ee134c0aeb3cbe8d4a5eb7bdeaed5ff4e31d /builtin/cat-file.c | |
| parent | 15db4e7f4ac20cc41902a2479c7784fff8edf2e9 (diff) | |
| download | git-36bf19589055fb71aac0ed6719dfe5b385adc2bf.tar.xz | |
alloc.h: move ALLOC_GROW() functions from cache.h
This allows us to replace includes of cache.h with includes of the much
smaller alloc.h in many places. It does mean that we also need to add
includes of alloc.h in a number of C files.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/cat-file.c')
| -rw-r--r-- | builtin/cat-file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/cat-file.c b/builtin/cat-file.c index cc17635e76..5b8be7cb63 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -5,6 +5,7 @@ */ #define USE_THE_INDEX_VARIABLE #include "cache.h" +#include "alloc.h" #include "config.h" #include "builtin.h" #include "diff.h" |
