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.
1 parent 2f59018 commit 295807dCopy full SHA for 295807d
vlib/net/net_nix.c.v
@@ -23,9 +23,9 @@ fn init() {
23
pub const msg_nosignal = 0x4000
24
pub const msg_dontwait = C.MSG_DONTWAIT
25
26
-pub const error_ewouldblock = C.EWOULDBLOCK
27
-pub const error_einprogress = C.EINPROGRESS
28
-pub const error_eagain = C.EAGAIN
29
-pub const error_eintr = C.EINTR
+pub const error_ewouldblock = int(C.EWOULDBLOCK)
+pub const error_einprogress = int(C.EINPROGRESS)
+pub const error_eagain = int(C.EAGAIN)
+pub const error_eintr = int(C.EINTR)
30
31
fn C.unlink(&char) int
0 commit comments