We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e289552 + 13ac7db commit ad43e8eCopy full SHA for ad43e8e
libc-test/semver/hermit.txt
@@ -1,5 +1,7 @@
1
AF_INET
2
AF_INET6
3
+AF_UNSPEC
4
+AF_VSOCK
5
CLOCK_MONOTONIC
6
CLOCK_REALTIME
7
DT_BLK
src/hermit.rs
@@ -114,8 +114,10 @@ s! {
114
}
115
116
117
-pub const AF_INET: i32 = 0;
+pub const AF_UNSPEC: i32 = 0;
118
+pub const AF_INET: i32 = 3;
119
pub const AF_INET6: i32 = 1;
120
+pub const AF_VSOCK: i32 = 2;
121
122
pub const CLOCK_REALTIME: clockid_t = 1;
123
pub const CLOCK_MONOTONIC: clockid_t = 4;
0 commit comments