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>
brian m. carlson committed
Aug 21, 2017 at 00:00 UTC
36f63b50e6c1d7336d3a01737d9210d9d260ed36
1 file changed
-7
vcs-svn/repo_tree.h
-7
@@ -10,14 +10,7 @@ struct strbuf;
10
11
uint32_t next_blob_mark(void);
12
void repo_copy(uint32_t revision, const char *src, const char *dst);
13
-void repo_add(const char *path, uint32_t mode, uint32_t blob_mark);
13
const char *repo_read_path(const char *path, uint32_t *mode_out);
14
void repo_delete(const char *path);
16
-void repo_commit(uint32_t revision, const char *author,
17
- const struct strbuf *log, const char *uuid, const char *url,
18
- long unsigned timestamp);
19
-void repo_diff(uint32_t r1, uint32_t r2);
20
-void repo_init(void);
21
-void repo_reset(void);
15
16
#endif