From 6fc527a8d05141335799f27bfbaab28c8625c31b Mon Sep 17 00:00:00 2001 From: Carlo Marcelo Arenas Belón Date: Fri, 29 Oct 2021 14:27:05 -0700 Subject: wrapper: remove xunsetenv() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the unused wrapper function. Reported-by: Randall S. Becker Signed-off-by: Carlo Marcelo Arenas Belón Signed-off-by: Junio C Hamano --- wrapper.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'wrapper.c') 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 -- cgit v1.3