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.
18 lines
295 B
C
18 lines
295 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
PUBLIC ssize_t getdents(fd, buffer, nbytes)
|
|
int fd;
|
|
char *buffer;
|
|
size_t nbytes;
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = fd;
|
|
m.m1_i2 = nbytes;
|
|
m.m1_p1 = (char *) buffer;
|
|
return _syscall(VFS_PROC_NR, GETDENTS, &m);
|
|
}
|