lyx_mirror/src/support/chdir.C
2000-01-17 21:01:30 +00:00

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
}