Skip to content

Commit aeb01e0

Browse files
committed
---
yaml --- r: 107208 b: refs/heads/try c: 9706372 h: refs/heads/master v: v3
1 parent 15506d2 commit aeb01e0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: b8ef9fd9c9f642ce7b8aed82782a1ed745d08d64
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: b8601a3d8b91ad3b653d143307611f2f5c75617e
5-
refs/heads/try: 8959aded2c5158792f03474d33f13e44266e4db7
5+
refs/heads/try: 97063727d791fc75c4704e5838a1b7513691031f
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/liblibc/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,6 @@ pub mod types {
997997
pub mod bsd44 {
998998
}
999999
pub mod extra {
1000-
use ptr;
10011000
use consts::os::extra::{MAX_PROTOCOL_CHAIN,
10021001
WSAPROTOCOL_LEN};
10031002
use types::common::c95::c_void;

branches/try/src/librustdoc/flock.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@
1818

1919
pub use self::imp::Lock;
2020

21+
2122
#[cfg(unix)]
2223
mod imp {
23-
use std::libc;
24+
use libc;
2425

2526
#[cfg(target_os = "linux")]
2627
mod os {
27-
use std::libc;
28+
use libc;
2829

2930
pub struct flock {
3031
l_type: libc::c_short,
@@ -45,7 +46,7 @@ mod imp {
4546

4647
#[cfg(target_os = "freebsd")]
4748
mod os {
48-
use std::libc;
49+
use libc;
4950

5051
pub struct flock {
5152
l_start: libc::off_t,
@@ -64,7 +65,7 @@ mod imp {
6465

6566
#[cfg(target_os = "macos")]
6667
mod os {
67-
use std::libc;
68+
use libc;
6869

6970
pub struct flock {
7071
l_start: libc::off_t,
@@ -132,7 +133,7 @@ mod imp {
132133

133134
#[cfg(windows)]
134135
mod imp {
135-
use std::libc;
136+
use libc;
136137
use std::mem;
137138
use std::os::win32::as_utf16_p;
138139
use std::os;

branches/try/src/librustdoc/html/markdown.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
2727
#[allow(non_camel_case_types)];
2828

29-
extern crate libc;
30-
29+
use libc;
3130
use std::cast;
3231
use std::fmt;
3332
use std::io;

branches/try/src/librustdoc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ extern crate testing = "test";
2626
extern crate time;
2727
#[phase(syntax, link)]
2828
extern crate log;
29+
extern crate libc;
2930

3031
use std::local_data;
3132
use std::io;

branches/try/src/test/run-pass/tcp-stress.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
#[feature(phase)];
1717
#[phase(syntax, link)]
1818
extern crate log;
19+
extern crate libc;
1920

20-
use std::libc;
2121
use std::io::net::ip::{Ipv4Addr, SocketAddr};
2222
use std::io::net::tcp::{TcpListener, TcpStream};
2323
use std::io::{Acceptor, Listener};

0 commit comments

Comments
 (0)