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.
23 lines
346 B
C
23 lines
346 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(write, _write)
|
|
#endif
|
|
|
|
ssize_t write(fd, buffer, nbytes)
|
|
int fd;
|
|
const void *buffer;
|
|
size_t nbytes;
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = fd;
|
|
m.m1_i2 = nbytes;
|
|
m.m1_p1 = (char *) buffer;
|
|
return(_syscall(VFS_PROC_NR, WRITE, &m));
|
|
}
|
|
|