2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <lib.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#ifdef __weak_alias
|
|
|
|
__weak_alias(chdir, _chdir)
|
|
|
|
__weak_alias(fchdir, _fchdir)
|
|
|
|
#endif
|
|
|
|
|
2012-03-25 20:25:53 +02:00
|
|
|
int chdir(name)
|
2012-03-25 20:38:37 +02:00
|
|
|
const char *name;
|
2011-02-17 18:11:09 +01:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
|
|
|
_loadname(name, &m);
|
|
|
|
return(_syscall(VFS_PROC_NR, CHDIR, &m));
|
|
|
|
}
|
|
|
|
|
2012-03-25 20:25:53 +02:00
|
|
|
int fchdir(fd)
|
2011-02-17 18:11:09 +01:00
|
|
|
int fd;
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.m1_i1 = fd;
|
|
|
|
return(_syscall(VFS_PROC_NR, FCHDIR, &m));
|
|
|
|
}
|