blob: a54c8bf9152a69f194fb34190952434b34d35463 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* pipe related function declarations */
/*#include <unistd.h>*/
#include <proc.h>
#include <fcntl.h>
#include <sys/select.h>
FILE* popen(const char* command, const char* mode);
int pclose(FILE* stream);
|