Build: Enable *GNU (Hurd) Bug 2476
[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 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* BSDI-specific code. This is concatenated onto the generic
9 src/os.c file. */
10
11 #ifndef OS_UNSETENV
12 #define OS_UNSETENV
13
14 int
15 os_unsetenv(const uschar * name)
16 {
17 unsetenv(CS name);
18 return 0;
19 }