aboutsummaryrefslogtreecommitdiff
path: root/core/os/os2/pipe_linux.odin
blob: b66ff96639bcec76ce64ea404421ca1f5e5b4673 (plain)
1
2
3
4
5
6
7
//+private
package os2

_pipe :: proc() -> (r, w: ^File, err: Error) {
	return nil, nil, nil
}