aboutsummaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-05-08 22:32:59 -0700
committerJunio C Hamano <gitster@pobox.com>2010-05-08 22:32:59 -0700
commit3ecaa3b6a5f707617ea610d727c696f43f8b2f0b (patch)
tree092dc9814e12b70ae637c26e36e5d0e6813657b4 /git-compat-util.h
parent43acff34b902c38808ac0f326090f2516250e1f0 (diff)
parent25755e842f814751fbdb7abfc8255a40f24bfaa3 (diff)
downloadgit-3ecaa3b6a5f707617ea610d727c696f43f8b2f0b.tar.gz
git-3ecaa3b6a5f707617ea610d727c696f43f8b2f0b.tar.xz
Merge branch 'pc/remove-warn'
* pc/remove-warn: Remove a redundant errno test in a usage of remove_path Introduce remove_or_warn function Implement the rmdir_or_warn function Generalise the unlink_or_warn function
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index 7e62b5527..6e2597728 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -479,5 +479,14 @@ void git_qsort(void *base, size_t nmemb, size_t size,
* Always returns the return value of unlink(2).
*/
int unlink_or_warn(const char *path);
+/*
+ * Likewise for rmdir(2).
+ */
+int rmdir_or_warn(const char *path);
+/*
+ * Calls the correct function out of {unlink,rmdir}_or_warn based on
+ * the supplied file mode.
+ */
+int remove_or_warn(unsigned int mode, const char *path);
#endif