aboutsummaryrefslogtreecommitdiff
path: root/libio/stdio/popen.c
blob: 9f9f3f72f58ee88bd694603b20b861fef77f9f6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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);
}