home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
libg++-2.6.2.lha
/
libg++-2.6.2
/
libio
/
stdio
/
popen.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-26
|
438b
|
24 lines
#include "libioP.h"
#include "stdio.h"
#include <errno.h>
FILE *
popen(command, mode)
const char *command; const char *mode;
{
return _IO_popen(command, mode);
}
int
pclose(fp)
FILE *fp;
{
#if 0
/* Does not actually test that stream was created by popen(). Instead,
it depends on the filebuf::sys_close() virtual to Do The Right Thing. */
if (fp is not a proc_file)
return -1;
#endif
return _IO_fclose(fp);
}