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.
17 lines
319 B
C
17 lines
319 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
PUBLIC int chown(const char *name, uid_t owner, gid_t grp)
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = strlen(name) + 1;
|
|
m.m1_i2 = owner;
|
|
m.m1_i3 = grp;
|
|
m.m1_p1 = (char *) name;
|
|
return(_syscall(VFS_PROC_NR, CHOWN, &m));
|
|
}
|