blob: e5d7c0c9c9fc31d063e6760ed8a24bf69f413910 [file] [log] [blame]
#include "libioP.h"
#include "stdio.h"
#include <errno.h>
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);
}