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