2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-02-10 17:15:18 +01:00
|
|
|
|
2013-08-07 08:47:28 +02:00
|
|
|
#ifndef EXECVPE_H
|
|
|
|
#define EXECVPE_H
|
2013-02-10 17:15:18 +01:00
|
|
|
|
2013-02-12 14:48:15 +01:00
|
|
|
#ifdef __cplusplus
|
2013-02-10 17:44:03 +01:00
|
|
|
extern "C" {
|
2013-02-12 14:48:15 +01:00
|
|
|
#endif /* __cplusplus */
|
2013-02-10 17:44:03 +01:00
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
#ifndef _MSC_VER
|
2017-12-31 07:22:16 +01:00
|
|
|
int icinga2_execvpe(const char *file, char *const argv[], char *const envp[]);
|
2013-10-26 09:41:45 +02:00
|
|
|
#endif /* _MSC_VER */
|
2013-02-10 17:15:18 +01:00
|
|
|
|
2013-02-12 14:48:15 +01:00
|
|
|
#ifdef __cplusplus
|
2013-02-10 17:44:03 +01:00
|
|
|
}
|
2013-02-12 14:48:15 +01:00
|
|
|
#endif /* __cplusplus */
|
2013-08-07 08:47:28 +02:00
|
|
|
|
|
|
|
#endif /* EXECVPE_H */
|