home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnuawk.zip / pc / popen.h < prev   
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.