]> git.lyx.org Git - lyx.git/blobdiff - src/support/rename.C
MacOSX compile fix.
[lyx.git] / src / support / rename.C
index bfa0a82bff3137a194f0fc8abcd0a0bbb6d44252..e84e486fee272dc5425d8519b4ab7630d45910b9 100644 (file)
 
 #include <config.h>
 
-#include <cstdio>
-
 #include "support/lyxlib.h"
 
+#include <cstdio>
+
 
 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);