blob: 5e32d66b6a9d6933184ac7538986115bf35517b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef EXECVPE_H
#define EXECVPE_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifndef _MSC_VER
int icinga2_execvpe(const char *file, char *const argv[], char *const envp[]);
#endif /* _MSC_VER */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* EXECVPE_H */
|