mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 09:52:23 -07:00
8 lines
96 B
Odin
8 lines
96 B
Odin
//+private
|
|
package os2
|
|
|
|
_pipe :: proc() -> (r, w: ^File, err: Error) {
|
|
return nil, nil, nil
|
|
}
|
|
|