From f2371e3b7daa43d8ea267e07c52a057fc08dc708 Mon Sep 17 00:00:00 2001 From: Mazdak Farrokhzad Date: Wed, 17 Apr 2019 05:45:37 +0200 Subject: [PATCH] bump bootstrap; remove redundant 'use libc;' on macOS. --- src/tools/compiletest/src/raise_fd_limit.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tools/compiletest/src/raise_fd_limit.rs b/src/tools/compiletest/src/raise_fd_limit.rs index 7f1d7e0d3cdd..e9c91094104e 100644 --- a/src/tools/compiletest/src/raise_fd_limit.rs +++ b/src/tools/compiletest/src/raise_fd_limit.rs @@ -7,7 +7,6 @@ #[cfg(any(target_os = "macos", target_os = "ios"))] #[allow(non_camel_case_types)] pub unsafe fn raise_fd_limit() { - use libc; use std::cmp; use std::io; use std::mem::size_of_val;