Skip to content

Commit

Permalink
unix: add S_IRWXG and S_IRWXO to FreeBSD types
Browse files Browse the repository at this point in the history
  • Loading branch information
janl committed Aug 8, 2018
1 parent bd9dbc1 commit 4e1c193
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions unix/types_freebsd.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ const ( // Directory mode bits
S_IRUSR = C.S_IRUSR
S_IWUSR = C.S_IWUSR
S_IXUSR = C.S_IXUSR
S_IRWXG = C.S_IRWXG
S_IRWXO = C.S_IRWXO
)

type Stat_t C.struct_stat8
Expand Down
2 changes: 2 additions & 0 deletions unix/ztypes_freebsd_386.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions unix/ztypes_freebsd_amd64.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions unix/ztypes_freebsd_arm.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4e1c193

Please sign in to comment.