icinga2/third-party/execvpe/execvpe.h

30 lines
708 B
C
Raw Normal View History

/* ----------------------------------------------------------------------------
(c) The University of Glasgow 2004
Interface for code in execvpe.c
------------------------------------------------------------------------- */
#include "config.h"
2013-02-10 17:44:03 +01:00
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#if HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#ifdef __cplusplus
2013-02-10 17:44:03 +01:00
extern "C" {
#endif /* __cplusplus */
2013-02-10 17:44:03 +01:00
#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(_WIN32) && !defined(HAVE_EXECVPE)
# ifndef __QNXNTO__
extern int execvpe(char *name, char *const argv[], char **envp);
2013-02-10 17:44:03 +01:00
# endif
extern void pPrPr_disableITimers (void);
#endif
#ifdef __cplusplus
2013-02-10 17:44:03 +01:00
}
#endif /* __cplusplus */