#ifndef _SUBPROC_H_90d4c7f9_ #define _SUBPROC_H_90d4c7f9_ #include "memstream.h" typedef struct proc PROC; #define PROC_N (-1000) #define PROC_VEC (-1001) #define PROC_WD (-1002) #define PROC_NULLIN (-1003) #define PROC_INFD (-1004) #define PROC_OUT (-1005) #define PROC_ERR (-1006) #define PROC_END (-1007) extern PROC *proc_start(int, ...); extern int proc_await(PROC *); #endif