1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
Files
glibc/libio/pclose.c
1995-12-06 00:14:32 +00:00

17 lines
326 B
C

#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);
}