repos
/
moxie
/
src
/
os
/ file_darwin.mx
file_darwin.mx
raw
1
package os
2
3
import "syscall"
4
5
func pipe(p []int) error {
6
return syscall.Pipe(p)
7
}
8