pipe.c 45 B

123456
  1. int
  2. pipe(f)
  3. int f[2];
  4. {
  5. return _pipe(f);
  6. }