]> 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 8fe84032b0a03f9e522fd56186d39273e6664d1c..b008aa4ac85021092ba6cbd3faf2aa5deb9e4958 100644 (file)
@@ -1,13 +1,20 @@
+/**
+ * \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 <config.h>
 
-#include <cstdlib>
+#include "lyxlib.h"
 
-#ifndef CXX_GLOBAL_CSTD
-using std::putenv;
-#endif
+#include <cstdlib>
 
-#include "lyxlib.h"
-int lyx::putenv(char const * str)
+int lyx::support::putenv(char const * str)
 {
        return ::putenv(const_cast<char*>(str));
 }