summaryrefslogtreecommitdiffstats
path: root/OS/unsupported/os.c-BSDI
blob: 03a7a1ceff2ac546db2084ec0a564b95e8079bcb (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 uschar * name)
{
unsetenv(CS name);
return 0;
}