mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-17 19:06:36 +00:00
12 lines
193 B
C
Executable File
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;
|
|
}
|