popen.h 395 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;
  11. int *child_stderr_array;
  12. FILE *child_process;
  13. FILE *child_stderr;