2000-01-17 21:01:30 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "support/lyxlib.h"
|
|
|
|
|
2000-09-26 13:54:57 +00:00
|
|
|
int lyx::chdir(string const & name)
|
|
|
|
{
|
|
|
|
#ifndef __EMX__
|
|
|
|
return ::chdir(name.c_str());
|
|
|
|
#else
|
|
|
|
return ::_chdir2(name.c_str());
|
|
|
|
#endif
|
|
|
|
}
|