X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/14de8063d82edc5bf003ed50abdea55ac542679b..ad1a76fefdc79201fe2efaf0ef356acbb7938d46:/src/OS/unsupported/os.c-BSDI diff --git a/src/OS/unsupported/os.c-BSDI b/src/OS/unsupported/os.c-BSDI new file mode 100644 index 000000000..3cef2ac6d --- /dev/null +++ b/src/OS/unsupported/os.c-BSDI @@ -0,0 +1,19 @@ +/************************************************* +* Exim - an Internet mail transport agent * +*************************************************/ + +/* Copyright (c) 2016 Heiko Schlittermann */ +/* 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 unsigned char * name) +{ +unsetenv((char *)name); +return 0; +}