4635162db2
Change-Id: Ie7de90d37a39e89f35438a5b01a9e878a06194b2
26 lines
404 B
C
26 lines
404 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
int chdir(name)
|
|
const char *name;
|
|
{
|
|
message m;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
_loadname(name, &m);
|
|
return(_syscall(VFS_PROC_NR, VFS_CHDIR, &m));
|
|
}
|
|
|
|
int fchdir(fd)
|
|
int fd;
|
|
{
|
|
message m;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
m.m_lc_vfs_fchdir.fd = fd;
|
|
return(_syscall(VFS_PROC_NR, VFS_FCHDIR, &m));
|
|
}
|