blob: 3cef2ac6debfdb2f74ad62080b707b0a595c6df4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*************************************************
* Exim - an Internet mail transport agent *
*************************************************/
/* Copyright (c) 2016 Heiko Schlittermann <hs@schlittermann.de> */
/* See the file NOTICE for conditions of use and distribution. */
/* BSDI-specific code. This is concatenated onto the generic
src/os.c file. */
#ifndef OS_UNSETENV
#define OS_UNSETENV
int
os_unsetenv(const unsigned char * name)
{
unsetenv((char *)name);
return 0;
}
|