mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +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
|
|
}
|
|
|