]> Zhao Yanbai Git Server - minix.git/commitdiff
Took fchdir out of the user library, it's suspected of being buggy (in FS)
authorBen Gras <ben@minix3.org>
Wed, 27 Jul 2005 18:48:48 +0000 (18:48 +0000)
committerBen Gras <ben@minix3.org>
Wed, 27 Jul 2005 18:48:48 +0000 (18:48 +0000)
lib/posix/_chdir.c

index 34c177a6b9cb218aeaaf160e6edf2282f4348792..9bcbeed70f6486174b1c900833c912d99400092c 100755 (executable)
@@ -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