Commit 86d87d2c authored by Natalie Fioretti's avatar Natalie Fioretti Committed by Han-Wen Nienhuys

added EISDIR constant

parent a53ed6b9
......@@ -46,6 +46,9 @@ const (
// ENOTDIR Not a directory
ENOTDIR = Status(syscall.ENOTDIR)
// EISDIR Is a directory
EISDIR = Status(syscall.EISDIR)
// EPERM Operation not permitted
EPERM = Status(syscall.EPERM)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment