RISC-V: Moved syscalls to separate files to fix aliasing problems.
This commit is contained in:
9
libgloss/riscv/sys_access.c
Normal file
9
libgloss/riscv/sys_access.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <machine/syscall.h>
|
||||
#include "internal_syscall.h"
|
||||
|
||||
/* Permissions of a file (by name). */
|
||||
int
|
||||
_access(const char *file, int mode)
|
||||
{
|
||||
return syscall_errno (SYS_access, file, mode, 0, 0, 0, 0);
|
||||
}
|
Reference in New Issue
Block a user