diff options
Diffstat (limited to 'pc/popen.h')
-rw-r--r-- | pc/popen.h | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -1,8 +1,9 @@ -/* -** popen.h -- prototypes for pipe functions -*/ -#if !defined(FILE) -#include <stdio.h> -#endif -extern FILE *popen( char *, char * ); - +/*
+** popen.h -- prototypes for pipe functions
+*/
+#if !defined(FILE)
+#include <stdio.h>
+#endif
+
+extern FILE *os_popen( char *, char * );
+extern int os_pclose( FILE * );
|