monitoring-plugins/plugins/popen.h
RincewindsHat 513929d796 Remove check for RETSIGTYPE in autoconf stuff
autoupdate tells me, that since C89 I can safely assume RETSIGTYPE
is void.

Therefore to simplify things I removed the corresponding configure.ac
line and replaced all mentions of RETSIGTYPE with void.
2023-09-23 12:31:33 +02:00

13 lines
359 B
C

/******************************************************************************
*
*
*****************************************************************************/
FILE *spopen (const char *);
int spclose (FILE *);
void popen_timeout_alarm_handler (int);
pid_t *childpid=NULL;
int *child_stderr_array=NULL;
FILE *child_process=NULL;
FILE *child_stderr=NULL;