blob: 029d6bb0a50a363df43d0c380bd2d775884d2536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef PIPE_H
#define PIPE_H
#include "syscalls.h"
#define PIPE_IN 1
#define PIPE_OUT 0
static int pipe(int *filedes)
{
return syscall(PIPE, filedes);
}
#endif
|