mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-20 21:35:19 +00:00
14 lines
210 B
Odin
14 lines
210 B
Odin
#+private
|
|
package os
|
|
|
|
_pipe :: proc() -> (r, w: ^File, err: Error) {
|
|
err = .Unsupported
|
|
return
|
|
}
|
|
|
|
@(require_results)
|
|
_pipe_has_data :: proc(r: ^File) -> (ok: bool, err: Error) {
|
|
err = .Unsupported
|
|
return
|
|
}
|