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

#include "config.h"
#include <errno.h>
#include "libnosys/warning.h"

int execve(char *name, char **argv, char **env)
{
    errno = ENOSYS;
	return -1;
}

stub_warning(execve)