blob: f33d26a44bc4990e353ab62c962bc1f853372195 [file] [log] [blame]
#include <errno.h>
int
_chdir(const char *path)
{
errno = ENOSYS;
return -1;
}