summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2014-07-28 18:29:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-08-26 18:06:05 (GMT)
commitaa14e980fff55e090dd42174ab4f37fe4b3dfa1e (patch)
tree0c90fa06f1001c96c3cd6c83579fa81850d5e928 /git-compat-util.h
parent2fdb9ce0673b9197214e0fc12a47a8b335561cd8 (diff)
downloadgit-aa14e980fff55e090dd42174ab4f37fe4b3dfa1e.zip
git-aa14e980fff55e090dd42174ab4f37fe4b3dfa1e.tar.gz
git-aa14e980fff55e090dd42174ab4f37fe4b3dfa1e.tar.bz2
wrapper: add xgetcwd()
Add the helper function xgetcwd(), which returns the current directory or dies. The returned string has to be free()d after use. Helped-by: Duy Nguyen <pclouds@gmail.com> Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index e6a4159..4010d35 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -538,6 +538,7 @@ 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);
static inline size_t xsize_t(off_t len)
{