]> git.lyx.org Git - lyx.git/blobdiff - src/support/chdir.C
MacOSX compile fix.
[lyx.git] / src / support / chdir.C
index 6425c860a2185ac16f623fc55e6f7178e49fb691..c93fdec9a661be424e3c5424930e03720693cf5d 100644 (file)
@@ -22,9 +22,7 @@
 
 int lyx::support::chdir(std::string const & name)
 {
-#ifdef __EMX__
-       return ::_chdir2(name.c_str());
-#elif defined(_WIN32)
+#ifdef _WIN32
        return SetCurrentDirectory(name.c_str()) != 0 ? 0 : -1;
 #else
        return ::chdir(name.c_str());