popen.h 410 B

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