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
419 B
C
20 lines
419 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
|
|
PUBLIC int mknod(const char *name, mode_t mode, dev_t dev)
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = strlen(name) + 1;
|
|
m.m1_i2 = mode;
|
|
m.m1_i3 = dev;
|
|
m.m1_p1 = (char *) name;
|
|
m.m1_p2 = (char *) ((int) 0); /* obsolete size field */
|
|
return(_syscall(VFS_PROC_NR, MKNOD, &m));
|
|
}
|