Fix incorrect constant for O_LARGEFILE on mips64-linux-musl

This commit is contained in:
jam1garner 2022-08-15 15:58:39 -04:00
parent 08c0f2c00a
commit 6844aff7b4
No known key found for this signature in database
GPG key ID: 00C357B2669B699F

View file

@ -458,7 +458,7 @@ pub const O_SYNC: ::c_int = 0x4010;
pub const O_RSYNC: ::c_int = 0x4010;
pub const O_DSYNC: ::c_int = 0x10;
pub const O_ASYNC: ::c_int = 0x1000;
pub const O_LARGEFILE: ::c_int = 0;
pub const O_LARGEFILE: ::c_int = 0x2000;
pub const EDEADLK: ::c_int = 45;
pub const ENAMETOOLONG: ::c_int = 78;