diff options
author | Carlo Marcelo Arenas Belón <carenas@gmail.com> | 2021-10-29 23:27:05 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-10-29 23:59:29 +0200 |
commit | 6fc527a8d05141335799f27bfbaab28c8625c31b (patch) | |
tree | 90de809f05cc2114c6790a06666d23e2f1e9e0c5 /git-compat-util.h | |
parent | The fifteenth batch (diff) | |
download | git-6fc527a8d05141335799f27bfbaab28c8625c31b.tar.xz git-6fc527a8d05141335799f27bfbaab28c8625c31b.zip |
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 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 141bb86351..d70ce14286 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -879,7 +879,6 @@ char *xstrndup(const char *str, size_t len); void *xrealloc(void *ptr, size_t size); void *xcalloc(size_t nmemb, size_t size); void xsetenv(const char *name, const char *value, int overwrite); -void xunsetenv(const char *name); void *xmmap(void *start, size_t length, int prot, int flags, int fd, off_t offset); const char *mmap_os_err(void); void *xmmap_gently(void *start, size_t length, int prot, int flags, int fd, off_t offset); |