File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -6037,7 +6037,6 @@ pub mod funcs {
6037
6037
use types:: common:: c95:: { c_void} ;
6038
6038
use types:: os:: common:: bsd44:: { socklen_t, sockaddr, SOCKET } ;
6039
6039
use types:: os:: arch:: c95:: c_int;
6040
- use types:: os:: arch:: posix88:: ssize_t;
6041
6040
6042
6041
extern "system" {
6043
6042
pub fn socket ( domain : c_int , ty : c_int , protocol : c_int ) -> SOCKET ;
@@ -6062,7 +6061,7 @@ pub mod funcs {
6062
6061
flags : c_int ) -> c_int ;
6063
6062
pub fn recvfrom ( socket : SOCKET , buf : * mut c_void , len : c_int ,
6064
6063
flags : c_int , addr : * mut sockaddr ,
6065
- addrlen : * mut c_int ) -> ssize_t ;
6064
+ addrlen : * mut c_int ) -> c_int ;
6066
6065
pub fn sendto ( socket : SOCKET , buf : * const c_void , len : c_int ,
6067
6066
flags : c_int , addr : * const sockaddr ,
6068
6067
addrlen : c_int ) -> c_int ;
You can’t perform that action at this time.
0 commit comments