diff options
Diffstat (limited to 'lib/unsetenv.c')
-rw-r--r-- | lib/unsetenv.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/unsetenv.c b/lib/unsetenv.c new file mode 100644 index 000000000..76ba332e3 --- /dev/null +++ b/lib/unsetenv.c @@ -0,0 +1,7 @@ +#include "config.h" + +#include <stdlib.h> + +void _xine_private_unsetenv(const char *name) { + putenv(name); +} |