SPDX: Mass-update to GPL-2.0-or-later
[exim.git] / src / OS / unsupported / os.c-BSDI
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) 2016 Heiko Schlittermann <hs@schlittermann.de> */
6 /* SPDX-License-Identifier: GPL-2.0-or-later */
7 /* See the file NOTICE for conditions of use and distribution. */
8
9 /* BSDI-specific code. This is concatenated onto the generic
10 src/os.c file. */
11
12 #ifndef OS_UNSETENV
13 #define OS_UNSETENV
14
15 int
16 os_unsetenv(const uschar * name)
17 {
18 unsetenv(CS name);
19 return 0;
20 }