summaryrefslogtreecommitdiff
path: root/src/process/posix_spawnp.c
blob: 04d768d03aaf7935e27baef8900026cf95b6977a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <spawn.h>
#include <unistd.h>

int __posix_spawnx(pid_t *, const char *,
	int (*)(const char *, char *const *),
	const posix_spawn_file_actions_t *,
	const posix_spawnattr_t *, char *const [], char *const []);

int posix_spawnp(pid_t *res, const char *file,
	const posix_spawn_file_actions_t *fa,
	const posix_spawnattr_t *attr,
	char *const argv[], char *const envp[])
{
	return __posix_spawnx(res, file, execvp, fa, attr, argv, envp);
}