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.
22 lines
335 B
C
22 lines
335 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(read, _read)
|
|
#endif
|
|
|
|
ssize_t read(fd, buffer, nbytes)
|
|
int fd;
|
|
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, READ, &m));
|
|
}
|