Took fchdir out of the user library, it's suspected of being buggy (in FS)

This commit is contained in:
Ben Gras 2005-07-27 18:48:48 +00:00
parent 92d44e8108
commit 3f4e0a5f59

View file

@ -11,6 +11,7 @@ _CONST char *name;
return(_syscall(FS, CHDIR, &m));
}
#if 0
PUBLIC int fchdir(fd)
int fd;
{
@ -19,4 +20,5 @@ int fd;
m.m1_i1 = fd;
return(_syscall(FS, FCHDIR, &m));
}
#endif