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

sys_chown.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}