diff options
author | Carlo Marcelo Arenas Belón <carenas@gmail.com> | 2021-10-29 14:27:05 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-10-29 14:59:29 -0700 |
commit | 6fc527a8d05141335799f27bfbaab28c8625c31b (patch) | |
tree | 90de809f05cc2114c6790a06666d23e2f1e9e0c5 /wrapper.c | |
parent | The fifteenth batch (diff) | |
download | tgif-6fc527a8d05141335799f27bfbaab28c8625c31b.tar.xz |
wrapper: remove xunsetenv()
Remove the unused wrapper function.
Reported-by: Randall S. Becker <rsbecker@nexbridge.com>
Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wrapper.c')
-rw-r--r-- | wrapper.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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 |