Re-enable fchdir()
This commit is contained in:
parent
f806a66edf
commit
36f91229ea
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user