home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Product / Product.zip / sc621_3.zip / src / popen.h < prev    next >
C/C++ Source or Header  |  1993-08-20  |  179b  |  10 lines

  1. /*
  2. ** popen.h -- prototypes for pipe functions
  3. */
  4. #if !defined(FILE)
  5. #include <stdio.h>
  6. #endif
  7.  
  8. extern FILE *os_popen( char *, char * );
  9. extern int  os_pclose( FILE * );
  10.