/************************************************* * 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 char *name) { unsetenv(name); return 0; }