diff options
Diffstat (limited to 'utils/awk/missing95.c')
| -rw-r--r-- | utils/awk/missing95.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/awk/missing95.c b/utils/awk/missing95.c new file mode 100644 index 00000000..64138ade --- /dev/null +++ b/utils/awk/missing95.c @@ -0,0 +1,12 @@ +/* popen and pclose are not part of win 95 and nt, + but it appears that _popen and _pclose "work". + if this won't load, use the return NULL statements. */ + +#include <stdio.h> +FILE *popen(char *s, char *m) { + return _popen(s, m); /* return NULL; */ +} + +int pclose(FILE *f) { + return _pclose(f); /* return NULL; */ +} |
