]> git.lyx.org Git - lyx.git/blobdiff - src/support/putenv.C
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / putenv.C
index a54c0dff3bc8e1d1d630eac4894bfd2dd275ffdd..b008aa4ac85021092ba6cbd3faf2aa5deb9e4958 100644 (file)
@@ -1,9 +1,20 @@
-#include <config.h>
+/**
+ * \file putenv.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
-#include <stdlib.h>
+#include <config.h>
 
 #include "lyxlib.h"
-int lyx::putenv(char const * str)
+
+#include <cstdlib>
+
+int lyx::support::putenv(char const * str)
 {
        return ::putenv(const_cast<char*>(str));
 }