20 lines
527 B
Text
20 lines
527 B
Text
/*************************************************
|
|
* Exim - an Internet mail transport agent *
|
|
*************************************************/
|
|
|
|
/* Copyright (c) 2016 Heiko Schlittermann <hs@schlittermann.de> */
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/* 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 uschar * name)
|
|
{
|
|
unsetenv(CS name);
|
|
return 0;
|
|
}
|