diff options
author | Brandon Williams <bmwill@google.com> | 2016-09-13 18:52:51 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-14 01:10:03 +0200 |
commit | e78d57ec8e330ab59058f932c0ba211014f4f6be (patch) | |
tree | 40c80ef58eaf85b3783a015ff73f07c96e177e0b /pathspec.h | |
parent | Git 2.8.4 (diff) | |
download | git-e78d57ec8e330ab59058f932c0ba211014f4f6be.tar.xz git-e78d57ec8e330ab59058f932c0ba211014f4f6be.zip |
pathspec: remove unnecessary function prototypes
A few functions were removed in 5a76aff1 ("add: convert to use
parse_pathspec", 2013-07-14), but we forgot to remove their external
declarations from pathspec.h while doing so.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pathspec.h')
-rw-r--r-- | pathspec.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pathspec.h b/pathspec.h index 0c1126264a..08f5876f02 100644 --- a/pathspec.h +++ b/pathspec.h @@ -96,7 +96,5 @@ static inline int ps_strcmp(const struct pathspec_item *item, extern char *find_pathspecs_matching_against_index(const struct pathspec *pathspec); extern void add_pathspec_matches_against_index(const struct pathspec *pathspec, char *seen); -extern const char *check_path_for_gitlink(const char *path); -extern void die_if_path_beyond_symlink(const char *path, const char *prefix); #endif /* PATHSPEC_H */ |