From 3f4e0a5f59eb6f5225710b006e9ab144c9350663 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 27 Jul 2005 18:48:48 +0000 Subject: [PATCH] Took fchdir out of the user library, it's suspected of being buggy (in FS) --- lib/posix/_chdir.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/posix/_chdir.c b/lib/posix/_chdir.c index 34c177a6b..9bcbeed70 100755 --- a/lib/posix/_chdir.c +++ b/lib/posix/_chdir.c @@ -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 -- 2.44.0