diff options
Diffstat (limited to 'plugins/popen.h')
-rw-r--r-- | plugins/popen.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/popen.h b/plugins/popen.h new file mode 100644 index 00000000..a1af4be0 --- /dev/null +++ b/plugins/popen.h @@ -0,0 +1,9 @@ +FILE *spopen (const char *); +int spclose (FILE *); +RETSIGTYPE popen_timeout_alarm_handler (int); + +extern int timeout_interval; +pid_t *childpid; +int *child_stderr_array; +FILE *child_process; +FILE *child_stderr; |