aboutsummaryrefslogtreecommitdiff
path: root/libgloss/m68k/atari/atari-chown.c
blob: 62f83000271d6e5c0657e48f39526d47b885aad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
	Copyright (C) 2025 Mikael Hildenborg
	SPDX-License-Identifier: BSD-2-Clause
*/

#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <sys/types.h>
#include <errno.h>
#include "atari-gem_errno.h"
#include "libnosys/warning.h"

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

stub_warning(chown)