4f294c247f
This patch mainly copies and modifies files existing in the current libc implementing minix specific functions. To keep consisten with the NetBSD libc, we remove namespace stubs and we use "namespace.h" and weak links.
28 lines
408 B
C
28 lines
408 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(chdir, _chdir)
|
|
__weak_alias(fchdir, _fchdir)
|
|
#endif
|
|
|
|
PUBLIC int chdir(name)
|
|
_CONST char *name;
|
|
{
|
|
message m;
|
|
|
|
_loadname(name, &m);
|
|
return(_syscall(VFS_PROC_NR, CHDIR, &m));
|
|
}
|
|
|
|
PUBLIC int fchdir(fd)
|
|
int fd;
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = fd;
|
|
return(_syscall(VFS_PROC_NR, FCHDIR, &m));
|
|
}
|