2017-12-27 04:27:52 +08:00
|
|
|
#include <machine/syscall.h>
|
|
|
|
#include "internal_syscall.h"
|
|
|
|
|
|
|
|
/* Establish a new name for an existing file. */
|
|
|
|
int _link(const char *old_name, const char *new_name)
|
|
|
|
{
|
2020-02-11 04:19:58 +08:00
|
|
|
return syscall_errno (SYS_link, 2, old_name, new_name, 0, 0, 0, 0);
|
2017-12-27 04:27:52 +08:00
|
|
|
}
|