1 /* popen and pclose are not part of win 95 and nt,
2 but it appears that _popen and _pclose "work".
3 if this won't load, use the return NULL statements. */
6 FILE *popen(char *s
, char *m
) {
7 return _popen(s
, m
); /* return NULL; */
11 return _pclose(f
); /* return NULL; */