mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 23:12:31 +00:00
15 lines
186 B
C++
15 lines
186 B
C++
|
#include <config.h>
|
||
|
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#include "support/lyxlib.h"
|
||
|
|
||
|
int lyx::chdir(char const * name)
|
||
|
{
|
||
|
#ifndef __EMX__
|
||
|
return ::chdir(name);
|
||
|
#else
|
||
|
return ::_chdir2(name);
|
||
|
#endif
|
||
|
}
|