mirror of
https://github.com/git/git.git
synced 2024-11-27 12:03:55 +08:00
Implement the rmdir_or_warn function
This patch implements an rmdir_or_warn function (like unlink_or_warn but for directories) that uses the generalised warning code in warn_if_unremovable. Signed-off-by: Peter Collingbourne <peter@pcc.me.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
10e13ec8ed
commit
d1723296af
@ -469,5 +469,9 @@ 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);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user