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

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

int chdir(const char *path)
{
    /* Actually implement something here... */

    (void)path;
    
    errno = ENOSYS;
    return -1;
}