aboutsummaryrefslogtreecommitdiff
path: root/libgloss/riscv/sys_chown.c
blob: 8faddffe29deed0f9f8aac834ba60e23de4c60f1 (plain)
1
2
3
4
5
6
7
8
#include <machine/syscall.h>
#include <sys/types.h>

/* Stub.  */
int _chown(const char *path, uid_t owner, gid_t group)
{
  return -1;
}