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.
20 lines
328 B
C
20 lines
328 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(fchown, _fchown)
|
|
#endif
|
|
|
|
PUBLIC int fchown(int fd, uid_t owner, gid_t grp)
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = fd;
|
|
m.m1_i2 = owner;
|
|
m.m1_i3 = grp;
|
|
return(_syscall(VFS_PROC_NR, FCHOWN, &m));
|
|
}
|