]> git.lyx.org Git - lyx.git/blobdiff - src/support/chdir.C
tostr -> convert and some bformat work
[lyx.git] / src / support / chdir.C
index 1f630a465d05763b7c374f88a3788714b2e864c4..a3065fb26ab3c2653c1960a850eb27e61854b186 100644 (file)
@@ -1,10 +1,20 @@
-#include <config.h>
+/**
+ * \file chdir.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 <unistd.h>
+#include <config.h>
 
 #include "support/lyxlib.h"
 
-int lyx::chdir(string const & name)
+#include <unistd.h>
+
+int lyx::support::chdir(std::string const & name)
 {
 #ifndef __EMX__
        return ::chdir(name.c_str());