mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-26 10:01:50 +00:00
db54977b71
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@427 a592a061-630c-0410-9148-cb99ea01b6c8
20 lines
283 B
C
20 lines
283 B
C
#include <config.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef CXX_WORKING_NAMESPACES
|
|
namespace lyx {
|
|
int putenv(char const * str)
|
|
{
|
|
return ::putenv(const_cast<char*>(str));
|
|
}
|
|
}
|
|
#else
|
|
#include "lyxlib.h"
|
|
int lyx::putenv(char const * str)
|
|
{
|
|
return ::putenv(const_cast<char*>(str));
|
|
}
|
|
|
|
#endif
|