]> git.lyx.org Git - lyx.git/blob - src/support/putenv.C
Compaq cxx 6.5 will now compile lyx.
[lyx.git] / src / support / putenv.C
1 #include <config.h>
2
3 #include <cstdlib>
4
5 #ifndef CXX_GLOBAL_CSTD
6 using std::putenv;
7 #endif
8
9 #include "lyxlib.h"
10 int lyx::putenv(char const * str)
11 {
12         return ::putenv(const_cast<char*>(str));
13 }