port of netbsd's tr
[minix.git] / commands / awk / missing95.c
blob00c3f3a5eb5f3484f5d44216d27539d950e94d06
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. */
5 #include <stdio.h>
6 FILE *popen(char *s, char *m) {
7 return _popen(s, m); /* return NULL; */
10 int pclose(FILE *f) {
11 return _pclose(f); /* return NULL; */