]> Zhao Yanbai Git Server - minix.git/commitdiff
Re-enable fchdir()
authorBen Gras <ben@minix3.org>
Fri, 20 Jan 2006 12:44:16 +0000 (12:44 +0000)
committerBen Gras <ben@minix3.org>
Fri, 20 Jan 2006 12:44:16 +0000 (12:44 +0000)
lib/posix/_chdir.c

index 9bcbeed70f6486174b1c900833c912d99400092c..1ead506698e8679ec71f5c3f917ee90f757e1735 100755 (executable)
@@ -1,5 +1,6 @@
 #include <lib.h>
 #define chdir  _chdir
+#define fchdir _fchdir
 #include <unistd.h>
 
 PUBLIC int chdir(name)
@@ -11,7 +12,6 @@ _CONST char *name;
   return(_syscall(FS, CHDIR, &m));
 }
 
-#if 0
 PUBLIC int fchdir(fd)
 int fd;
 {
@@ -20,5 +20,3 @@ int fd;
   m.m1_i1 = fd;
   return(_syscall(FS, FCHDIR, &m));
 }
-#endif
-