blob: 43e5bb147fcdcf559887e7de5e1d02c594de96e5 (
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 char *name)
{
unsetenv(name);
return 0;
}
|