mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
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>
This commit is contained in:
committed by
Junio C Hamano
parent
e9e5ba39a7
commit
6fc527a8d0
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user