mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 12:26:59 +00:00
10 lines
142 B
C++
10 lines
142 B
C++
|
#include <config.h>
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "lyxlib.h"
|
||
|
int lyx::putenv(char const * str)
|
||
|
{
|
||
|
return ::putenv(const_cast<char*>(str));
|
||
|
}
|