about summary refs log tree commit diff
path: root/src/libnative
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-10-09 11:59:03 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-10-09 16:36:07 -0700
commit0b517117b3ac9c4981bbe00a529e48e4019554d1 (patch)
tree54da1e9acb4a56f0a6bdf86ad8e3a2cc9e5a0130 /src/libnative
parenta3e8f41212a04b702596f4261b89f2c3254338d7 (diff)
downloadrust-0b517117b3ac9c4981bbe00a529e48e4019554d1.tar.gz
rust-0b517117b3ac9c4981bbe00a529e48e4019554d1.zip
Test fixes and rebase conflicts
Diffstat (limited to 'src/libnative')
-rw-r--r--src/libnative/io/c_windows.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnative/io/c_windows.rs b/src/libnative/io/c_windows.rs
index 2266f41eff9..067a31166a5 100644
--- a/src/libnative/io/c_windows.rs
+++ b/src/libnative/io/c_windows.rs
@@ -17,7 +17,7 @@ use libc;
 pub const WSADESCRIPTION_LEN: uint = 256;
 pub const WSASYS_STATUS_LEN: uint = 128;
 pub const FIONBIO: libc::c_long = 0x8004667e;
-static FD_SETSIZE: uint = 64;
+pub const FD_SETSIZE: uint = 64;
 pub const MSG_DONTWAIT: libc::c_int = 0;
 pub const ERROR_ILLEGAL_CHARACTER: libc::c_int = 582;
 pub const ENABLE_ECHO_INPUT: libc::DWORD = 0x4;