diff options
author | Elijah Newren <newren@gmail.com> | 2023-03-21 07:25:58 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-03-21 18:56:52 +0100 |
commit | 0b027f6ca79cafbc14f36ff1741fc7378282f295 (patch) | |
tree | 8664359f8aadf94ee7cd79839244198e6cbd78d4 /parse-options.c | |
parent | environment: move comment_line_char from cache.h (diff) | |
download | git-0b027f6ca79cafbc14f36ff1741fc7378282f295.tar.xz git-0b027f6ca79cafbc14f36ff1741fc7378282f295.zip |
abspath.h: move absolute path functions from cache.h
This is another step towards letting us remove the include of cache.h in
strbuf.c. It does mean that we also need to add includes of abspath.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 'parse-options.c')
-rw-r--r-- | parse-options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/parse-options.c b/parse-options.c index 084b4f1062..a577cc85f6 100644 --- a/parse-options.c +++ b/parse-options.c @@ -1,5 +1,6 @@ #include "git-compat-util.h" #include "parse-options.h" +#include "abspath.h" #include "cache.h" #include "config.h" #include "commit.h" |