xref: /inferno-os/utils/awk/missing95.c (revision 6e425a9de8c003b5a733621a6b6730ec3cc902b8)
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>
6 FILE *popen(char *s, char *m) {
7 	return _popen(s, m);	/* return NULL; */
8 }
9 
10 int pclose(FILE *f) {
11 	return _pclose(f);	/* return NULL; */
12 }
13