popen.h 403 B

1234567891011121314
  1. /******************************************************************************
  2. *
  3. *
  4. *****************************************************************************/
  5. FILE *spopen (const char *);
  6. int spclose (FILE *);
  7. RETSIGTYPE popen_timeout_alarm_handler (int);
  8. extern unsigned int timeout_interval;
  9. pid_t *childpid=NULL;
  10. int *child_stderr_array=NULL;
  11. FILE *child_process=NULL;
  12. FILE *child_stderr=NULL;