summaryrefslogtreecommitdiffstats
path: root/kernel/tests/include/lapi/execveat.h
blob: a7406f7c017e4f0b178d482b28b791dc87df2cb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (C) 2018 MediaTek Inc.  All Rights Reserved.
 */

#ifndef EXECVEAT_H
#define EXECVEAT_H

#include <sys/types.h>
#include "config.h"
#include "lapi/syscalls.h"

#if !defined(HAVE_EXECVEAT)
int execveat(int dirfd, const char *pathname,
			char *const argv[], char *const envp[],
			int flags)
{
	return tst_syscall(__NR_execveat, dirfd, pathname, argv, envp, flags);
}
#endif

#endif /* EXECVEAT_H */