mirror of
https://github.com/php/php-src.git
synced 2024-11-26 11:23:47 +08:00
12 lines
208 B
C
12 lines
208 B
C
|
|
/* 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);
|