16 lines
454 B
C
16 lines
454 B
C
/******************************************************************************
|
|
*
|
|
* $Id: popen.h 1919 2008-01-31 11:45:28Z dermoth $
|
|
*
|
|
*****************************************************************************/
|
|
|
|
FILE *spopen (const char *);
|
|
int spclose (FILE *);
|
|
RETSIGTYPE popen_timeout_alarm_handler (int);
|
|
|
|
extern unsigned int timeout_interval;
|
|
pid_t *childpid=NULL;
|
|
int *child_stderr_array=NULL;
|
|
FILE *child_process=NULL;
|
|
FILE *child_stderr=NULL;
|