]> git.lyx.org Git - lyx.git/blob - src/support/putenv.C
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / putenv.C
1 /**
2  * \file putenv.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "lyxlib.h"
14
15 #include <cstdlib>
16
17 int lyx::support::putenv(char const * str)
18 {
19         return ::putenv(const_cast<char*>(str));
20 }