summaryrefslogtreecommitdiff
path: root/com32/lib/chdir.c
blob: 6f92d6685640073751ffd1f44ffd53ce5878ed2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * chdir.c
 */

#include <dirent.h>
#include <stdio.h>
#include <errno.h>

int chdir(const char *path)
{
    errno = ENOSYS;
    return -1;
}