We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ccb828 + ce9ab41 commit 6a5c07fCopy full SHA for 6a5c07f
libc-test/semver/linux.txt
@@ -181,6 +181,7 @@ AT_SECURE
181
AT_SYMLINK_FOLLOW
182
AT_SYMLINK_NOFOLLOW
183
AT_UID
184
+AT_SYSINFO_EHDR
185
B1000000
186
B1152000
187
B1500000
src/unix/linux_like/linux/mod.rs
@@ -1583,6 +1583,10 @@ pub const AT_HWCAP2: ::c_ulong = 26;
1583
1584
pub const AT_EXECFN: ::c_ulong = 31;
1585
1586
+// defined in arch/<arch>/include/uapi/asm/auxvec.h but has the same value
1587
+// wherever it is defined.
1588
+pub const AT_SYSINFO_EHDR: ::c_ulong = 33;
1589
+
1590
pub const GLOB_ERR: ::c_int = 1 << 0;
1591
pub const GLOB_MARK: ::c_int = 1 << 1;
1592
pub const GLOB_NOSORT: ::c_int = 1 << 2;
0 commit comments