Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sys_link.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83cd1b239b685ed6c05e3cfeab19fde1fa6655ae (plain)
1
2
3
4
5
6
7
8
#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)
{
  return syscall_errno (SYS_link, 2, old_name, new_name, 0, 0, 0, 0);
}