diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-05-14 23:29:49 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-05-14 23:55:23 -0700 |
commit | e686640da8441d0cae0e45d5d6ef9f96c45a8e24 (patch) | |
tree | af0eafa29732bc148fd764211e32680e7149ec94 /libstd/errno+plan9.myr | |
parent | 160d2c2b424adfbd456f61cb5e194888a054ff51 (diff) | |
download | mc-e686640da8441d0cae0e45d5d6ef9f96c45a8e24.tar.gz |
Fix plan9 build.
Diffstat (limited to 'libstd/errno+plan9.myr')
-rw-r--r-- | libstd/errno+plan9.myr | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libstd/errno+plan9.myr b/libstd/errno+plan9.myr new file mode 100644 index 0000000..c911349 --- /dev/null +++ b/libstd/errno+plan9.myr @@ -0,0 +1,6 @@ +pkg std = + type errno = int + const Erange : errno = 1 + const Emisc : errno = 2 + const Eexist : errno = 3 +;; |