mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-13 23:03:16 +00:00
8 lines
119 B
Odin
8 lines
119 B
Odin
//+private
|
|
package os2
|
|
|
|
_pipe :: proc() -> (r, w: Handle, err: Error) {
|
|
return INVALID_HANDLE, INVALID_HANDLE, nil
|
|
}
|
|
|