RISC-V: Moved syscalls to separate files to fix aliasing problems.
This commit is contained in:
8
libgloss/riscv/sys_chown.c
Normal file
8
libgloss/riscv/sys_chown.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <machine/syscall.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
/* Stub. */
|
||||
int _chown(const char *path, uid_t owner, gid_t group)
|
||||
{
|
||||
return -1;
|
||||
}
|
Reference in New Issue
Block a user