summaryrefslogtreecommitdiff
path: root/wrapper.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-10-29 15:43:15 -0700
committerJunio C Hamano <gitster@pobox.com>2021-10-29 15:43:16 -0700
commit7b3fd03e6acbc990b4dd540079368d4e85cc7f1b (patch)
treee9c79f1e2c3ee046db95b517cc10c33b8bac5ee0 /wrapper.c
parenta31efa77c641ed3a71f6445da93f623351afb76e (diff)
parent6fc527a8d05141335799f27bfbaab28c8625c31b (diff)
Merge branch 'cm/drop-xunsetenv'
Drop a helper function that has never been used since its addition. * cm/drop-xunsetenv: wrapper: remove xunsetenv()
Diffstat (limited to 'wrapper.c')
-rw-r--r--wrapper.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/wrapper.c b/wrapper.c
index 1460d4e27b..36e12119d7 100644
--- a/wrapper.c
+++ b/wrapper.c
@@ -151,12 +151,6 @@ void xsetenv(const char *name, const char *value, int overwrite)
die_errno(_("could not setenv '%s'"), name ? name : "(null)");
}
-void xunsetenv(const char *name)
-{
- if (!unsetenv(name))
- die_errno(_("could not unsetenv '%s'"), name ? name : "(null)");
-}
-
/*
* Limit size of IO chunks, because huge chunks only cause pain. OS X
* 64-bit is buggy, returning EINVAL if len >= INT_MAX; and even in