]> git.lyx.org Git - lyx.git/blob - src/support/putenv.C
another safety belt
[lyx.git] / src / support / putenv.C
1 #include <config.h>
2
3 #include "lyxlib.h"
4
5 #include <cstdlib>
6
7 int lyx::putenv(char const * str)
8 {
9         return ::putenv(const_cast<char*>(str));
10 }