Added fchdir() system call, with corresponding manpage, Changelog and

system include modifications.
This commit is contained in:
Ben Gras
2005-06-29 19:28:26 +00:00
parent 62f7f9e6d2
commit af27dc0cf7
8 changed files with 47 additions and 5 deletions

View File

@@ -10,3 +10,13 @@ _CONST char *name;
_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));
}