mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-01 10:52:19 +00: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
|
|
}
|
|
|