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. */
4
5#include <stdio.h>
6FILE *popen(char *s, char *m) {
7	return _popen(s, m);	/* return NULL; */
8}
9
10int pclose(FILE *f) {
11	return _pclose(f);	/* return NULL; */
12}
13