Merge branch 'cm/drop-xunsetenv'
Drop a helper function that has never been used since its addition. * cm/drop-xunsetenv: wrapper: remove xunsetenv()
This commit is contained in:
@ -879,7 +879,6 @@ char *xstrndup(const char *str, size_t len);
|
|||||||
void *xrealloc(void *ptr, size_t size);
|
void *xrealloc(void *ptr, size_t size);
|
||||||
void *xcalloc(size_t nmemb, size_t size);
|
void *xcalloc(size_t nmemb, size_t size);
|
||||||
void xsetenv(const char *name, const char *value, int overwrite);
|
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);
|
void *xmmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
|
||||||
const char *mmap_os_err(void);
|
const char *mmap_os_err(void);
|
||||||
void *xmmap_gently(void *start, size_t length, int prot, int flags, int fd, off_t offset);
|
void *xmmap_gently(void *start, size_t length, int prot, int flags, int fd, off_t offset);
|
||||||
|
@ -151,12 +151,6 @@ void xsetenv(const char *name, const char *value, int overwrite)
|
|||||||
die_errno(_("could not setenv '%s'"), name ? name : "(null)");
|
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
|
* 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
|
* 64-bit is buggy, returning EINVAL if len >= INT_MAX; and even in
|
||||||
|
Reference in New Issue
Block a user