]> git.ipfire.org Git - thirdparty/git.git/blobdiff - wrapper.c
t7004: use "test-tool ref-store" for reflog inspection
[thirdparty/git.git] / wrapper.c
index 1460d4e27b03cc976e21581942158d16d144fc18..36e12119d76556a710dbc8da2953a4710e630fdb 100644 (file)
--- 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