mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
9 lines
138 B
C
9 lines
138 B
C
|
#include <machine/syscall.h>
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
/* Stub. */
|
||
|
int _chown(const char *path, uid_t owner, gid_t group)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|