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
396 B
C
22 lines
396 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(symlink, _symlink)
|
|
#endif
|
|
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
int symlink(name, name2)
|
|
const char *name, *name2;
|
|
{
|
|
message m;
|
|
|
|
m.m1_i1 = strlen(name) + 1;
|
|
m.m1_i2 = strlen(name2) + 1;
|
|
m.m1_p1 = (char *) name;
|
|
m.m1_p2 = (char *) name2;
|
|
return(_syscall(VFS_PROC_NR, SYMLINK, &m));
|
|
}
|