mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
635a7afc3d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4354 a592a061-630c-0410-9148-cb99ea01b6c8
11 lines
142 B
C
11 lines
142 B
C
#include <config.h>
|
|
|
|
#include "lyxlib.h"
|
|
|
|
#include <cstdlib>
|
|
|
|
int lyx::putenv(char const * str)
|
|
{
|
|
return ::putenv(const_cast<char*>(str));
|
|
}
|