pipe.odin 79 B

12345
  1. package os2
  2. pipe :: proc() -> (r, w: Handle, err: Error) {
  3. return _pipe();
  4. }