diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-07-17 20:30:42 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-07-17 20:30:42 +0200 |
commit | ce481ac8b31c9061eeecd1ba0d7174b621f96632 (patch) | |
tree | 21d54bf0d30f970db5c98a2298a0ae6a45057ec6 /read-cache.c | |
parent | Merge branch 'vd/adjust-mfow-doc-to-updated-headers' (diff) | |
parent | git-compat-util: move alloc macros to git-compat-util.h (diff) | |
download | git-ce481ac8b31c9061eeecd1ba0d7174b621f96632.tar.xz git-ce481ac8b31c9061eeecd1ba0d7174b621f96632.zip |
Merge branch 'cw/compat-util-header-cleanup'
Further shuffling of declarations across header files to streamline
file dependencies.
* cw/compat-util-header-cleanup:
git-compat-util: move alloc macros to git-compat-util.h
treewide: remove unnecessary includes for wrapper.h
kwset: move translation table from ctype
sane-ctype.h: create header for sane-ctype macros
git-compat-util: move wrapper.c funcs to its header
git-compat-util: move strbuf.c funcs to its header
Diffstat (limited to 'read-cache.c')
-rw-r--r-- | read-cache.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/read-cache.c b/read-cache.c index 27703e1446..080bd39713 100644 --- a/read-cache.c +++ b/read-cache.c @@ -4,7 +4,6 @@ * Copyright (C) Linus Torvalds, 2005 */ #include "git-compat-util.h" -#include "alloc.h" #include "bulk-checkin.h" #include "config.h" #include "date.h" @@ -46,7 +45,6 @@ #include "csum-file.h" #include "promisor-remote.h" #include "hook.h" -#include "wrapper.h" /* Mask for the name length in ce_flags in the on-disk index */ |