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

chown.c « rdos « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48f33f563cb06f20a05f5a3f54bac235c7c911ac (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>
#include <sys/types.h>

int chown(const char *path, uid_t owner, gid_t group)
{
  errno = ENOSYS;
  return -1;
}