RISC-V: Moved syscalls to separate files to fix aliasing problems.

This commit is contained in:
Jim Wilson
2017-12-26 12:27:52 -08:00
parent 347b083911
commit 28d5b98038
37 changed files with 513 additions and 450 deletions

View File

@@ -0,0 +1,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, old_name, new_name, 0, 0, 0, 0);
}