mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 15:05:56 +00:00
c36aa67f7b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@423 a592a061-630c-0410-9148-cb99ea01b6c8
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
|
|
}
|