mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
d7a20664db
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1143 a592a061-630c-0410-9148-cb99ea01b6c8
15 lines
204 B
C
15 lines
204 B
C
#include <config.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "support/lyxlib.h"
|
|
|
|
int lyx::chdir(string const & name)
|
|
{
|
|
#ifndef __EMX__
|
|
return ::chdir(name.c_str());
|
|
#else
|
|
return ::_chdir2(name.c_str());
|
|
#endif
|
|
}
|