diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-12-09 22:17:55 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-12-09 22:17:55 -0800 |
commit | 7034cd094bda4edbcdff7fad1a28fcaaf9b9a040 (patch) | |
tree | e0b837c5e5a2ea2fce3255ef59fd981e2bd30374 /git-compat-util.h | |
parent | The fourth batch (diff) | |
parent | Git 2.24.1 (diff) | |
download | tgif-7034cd094bda4edbcdff7fad1a28fcaaf9b9a040.tar.xz |
Sync with Git 2.24.1
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index ddb7fca8d6..aed0b5d4f9 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -377,6 +377,10 @@ static inline int git_offset_1st_component(const char *path) #define offset_1st_component git_offset_1st_component #endif +#ifndef is_valid_path +#define is_valid_path(path) 1 +#endif + #ifndef find_last_dir_sep static inline char *git_find_last_dir_sep(const char *path) { |