diff options
author | Jeff King <peff@peff.net> | 2017-03-16 10:27:00 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-16 11:04:34 -0700 |
commit | 82c9d6614bcd80bc2b6646f3943971fa0ec20135 (patch) | |
tree | 084ea5e00931917f4ff77d1965b09cd563f06665 /git-compat-util.h | |
parent | Git 2.12 (diff) | |
download | tgif-82c9d6614bcd80bc2b6646f3943971fa0ec20135.tar.xz |
move odb_* declarations out of git-compat-util.h
These functions were originally conceived as wrapper
functions similar to xmkstemp(). They were later moved by
463db9b10 (wrapper: move odb_* to environment.c,
2010-11-06). The more appropriate place for a declaration is
in cache.h.
While we're at it, let's add some basic docstrings.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index ef6d560e15..412703b4ff 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -803,8 +803,6 @@ extern FILE *xfopen(const char *path, const char *mode); extern FILE *xfdopen(int fd, const char *mode); extern int xmkstemp(char *template); extern int xmkstemp_mode(char *template, int mode); -extern int odb_mkstemp(char *template, size_t limit, const char *pattern); -extern int odb_pack_keep(char *name, size_t namesz, const unsigned char *sha1); extern char *xgetcwd(void); extern FILE *fopen_for_writing(const char *path); |