mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
14 lines
211 B
Odin
14 lines
211 B
Odin
#+private
|
|
package os2
|
|
|
|
_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
|
|
}
|