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.
25 lines
418 B
C
25 lines
418 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(readlink, _readlink)
|
|
#endif
|
|
|
|
int readlink(name, buffer, bufsiz)
|
|
const char *name;
|
|
char *buffer;
|
|
size_t bufsiz;
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = strlen(name) + 1;
|
|
m.m1_i2 = bufsiz;
|
|
m.m1_p1 = (char *) name;
|
|
m.m1_p2 = (char *) buffer;
|
|
|
|
return(_syscall(VFS_PROC_NR, RDLNK, &m));
|
|
}
|