Skip to content
Snippets Groups Projects
Commit a9cddbcf authored by John Paul Adrian Glaubitz's avatar John Paul Adrian Glaubitz
Browse files

Prefer hexadecimal representation of O_TMPFILE on linux-sparc64

parent a4fb64a9
No related branches found
No related tags found
Loading
......@@ -145,7 +145,7 @@ pub const O_DSYNC: ::c_int = 0x2000;
pub const O_FSYNC: ::c_int = 0x802000;
pub const O_NOATIME: ::c_int = 0x200000;
pub const O_PATH: ::c_int = 0x1000000;
pub const O_TMPFILE: ::c_int = 0o200000000 | O_DIRECTORY;
pub const O_TMPFILE: ::c_int = 0x2000000 | O_DIRECTORY;
pub const MAP_GROWSDOWN: ::c_int = 0x0200;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment