aboutsummaryrefslogtreecommitdiff
path: root/libgloss/m68k/atari/atari-readlink.c
blob: 23514a1515e43ad36369524e2bbabd77a1a15c13 (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 readlink(const char *path, char *buf, size_t bufsize)
{
    errno = ENOSYS;
    return -1;
}

stub_warning(readlink)