icinga2/third-party/execvpe/execvpe.h

19 lines
332 B
C
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef EXECVPE_H
#define EXECVPE_H
#ifdef __cplusplus
2013-02-10 17:44:03 +01:00
extern "C" {
#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 */
#ifdef __cplusplus
2013-02-10 17:44:03 +01:00
}
#endif /* __cplusplus */
#endif /* EXECVPE_H */