Retro68/gcc/newlib/libc/sys/rdos/chown.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

12 lines
193 B
C
Executable File

#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;
}