]> git.lyx.org Git - lyx.git/blobdiff - src/support/rename.C
hopefully fix tex2lyx linking.
[lyx.git] / src / support / rename.C
index 3db8cd2d0099c7859b9385612a217f24a14610c7..60cf31dc64fdec42b21d0e0a61e76525bd4830a5 100644 (file)
@@ -5,20 +5,24 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
+#include "support/lyxlib.h"
+
 #include <cstdio>
 
-#include "support/lyxlib.h"
+
+namespace lyx {
+
+
+using std::string;
+
 
 bool lyx::support::rename(string const & from, string const & to)
 {
-#ifdef __EMX__
-       unlink(to);
-#endif
        if (::rename(from.c_str(), to.c_str()) == -1)
                if (copy(from, to)) {
                        unlink(from);
@@ -27,3 +31,6 @@ bool lyx::support::rename(string const & from, string const & to)
                        return false;
        return true;
 }
+
+
+} // namespace lyx