diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-08-21 00:00:17 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-20 20:55:10 -0700 |
commit | 36f63b50e6c1d7336d3a01737d9210d9d260ed36 (patch) | |
tree | 00454ac41711e1e39ba909f006ff689704db5c29 /vcs-svn | |
parent | 0bfff8146f8c055fd95af4567286929ba8216fa7 (diff) | |
download | git-36f63b50e6c1d7336d3a01737d9210d9d260ed36.tar.gz |
vcs-svn: remove unused prototypes
The Subversion code had prototypes for several functions which were not
ever defined or used. These functions all had names starting with
"repo_", some of which conflict with those in repository.h. To avoid
the conflict, remove those unused prototypes.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'vcs-svn')
-rw-r--r-- | vcs-svn/repo_tree.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/vcs-svn/repo_tree.h b/vcs-svn/repo_tree.h index 889c6a3c95..d0f5690dca 100644 --- a/vcs-svn/repo_tree.h +++ b/vcs-svn/repo_tree.h @@ -10,14 +10,7 @@ struct strbuf; uint32_t next_blob_mark(void); void repo_copy(uint32_t revision, const char *src, const char *dst); -void repo_add(const char *path, uint32_t mode, uint32_t blob_mark); const char *repo_read_path(const char *path, uint32_t *mode_out); void repo_delete(const char *path); -void repo_commit(uint32_t revision, const char *author, - const struct strbuf *log, const char *uuid, const char *url, - long unsigned timestamp); -void repo_diff(uint32_t r1, uint32_t r2); -void repo_init(void); -void repo_reset(void); #endif |