]> git.lyx.org Git - lyx.git/blob - src/support/putenv.C
fix typo that put too many include paths for most people
[lyx.git] / src / support / putenv.C
1 #include <config.h>
2
3 #include <stdlib.h>
4
5 #include "lyxlib.h"
6 int lyx::putenv(char const * str)
7 {
8         return ::putenv(const_cast<char*>(str));
9 }