1
0
Fork 0
exim4/OS/unsupported/os.c-BSDI
Daniel Baumann 802ab461a9
Adding upstream version 4.98.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 14:27:17 +02:00

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;
}