unix: add f_flag member flags on z/OS

This change adds the constants `ST_RDONLY` and `ST_NOSUID` to a z/OS-specific file.
This commit is contained in:
Joon Lee
2024-08-14 12:51:58 -04:00
parent da77c6b1d1
commit 952cf1bc7f

View File

@@ -581,6 +581,8 @@ const (
AT_EMPTY_PATH = 0x1000
AT_REMOVEDIR = 0x200
RENAME_NOREPLACE = 1 << 0
ST_RDONLY = 1
ST_NOSUID = 2
)
const (