minix/lib/posix/_chdir.c

23 lines
301 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
#include <lib.h>
#define chdir _chdir
2006-01-20 13:44:16 +01:00
#define fchdir _fchdir
2005-04-21 16:53:53 +02:00
#include <unistd.h>
PUBLIC int chdir(name)
_CONST char *name;
{
message m;
_loadname(name, &m);
return(_syscall(FS, CHDIR, &m));
}
PUBLIC int fchdir(fd)
int fd;
{
message m;
m.m1_i1 = fd;
return(_syscall(FS, FCHDIR, &m));
}