Skip to content
Snippets Groups Projects
Commit a625c695 authored by Dan Gohman's avatar Dan Gohman
Browse files

Make FD_ISSET's argument a pointer to const, to match the libc declaration.

parent 6b524b36
No related branches found
No related tags found
No related merge requests found
......@@ -1053,7 +1053,7 @@ extern {
pub fn uselocale(loc: ::locale_t) -> ::locale_t;
pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> ();
pub fn FD_ISSET(fd: ::c_int, set: *mut fd_set) -> bool;
pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool;
pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> ();
pub fn FD_ZERO(set: *mut fd_set) -> ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment