Skip to content

Commit

Permalink
Last few constants
Browse files Browse the repository at this point in the history
  • Loading branch information
arcnmx committed Apr 20, 2016
1 parent b8e192b commit 70362e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sys/stat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ bitflags! {
const S_IWOTH = libc::S_IWOTH,
const S_IXOTH = libc::S_IXOTH,

const S_ISUID = 0o4000,
const S_ISGID = 0o2000,
const S_ISVTX = 0o1000,
const S_ISUID = libc::S_ISUID as mode_t,
const S_ISGID = libc::S_ISGID as mode_t,
const S_ISVTX = libc::S_ISVTX as mode_t,
}
}

Expand Down

0 comments on commit 70362e2

Please sign in to comment.