about summary refs log tree commit diff
path: root/src/libstd/os/freebsd
diff options
context:
space:
mode:
authorSébastien Marie <semarie@users.noreply.github.com>2015-04-30 17:26:53 +0200
committerSébastien Marie <semarie@users.noreply.github.com>2015-04-30 17:26:53 +0200
commit27bcd2ebc75b45b3c1afc6cc67ce652b7fdca2e6 (patch)
tree3ee445360673267b6b4776d66f5565fc9e3ae276 /src/libstd/os/freebsd
parentb59403606953d01391c1faa38d96062e3dfafa3d (diff)
downloadrust-27bcd2ebc75b45b3c1afc6cc67ce652b7fdca2e6.tar.gz
rust-27bcd2ebc75b45b3c1afc6cc67ce652b7fdca2e6.zip
remove denied unused import: pid_t in raw
- unbreak the build under openbsd
- while here, apply same modification to dragonfly, freebsd, ios (pid_t
  imported, but not used in raw.rs)
Diffstat (limited to 'src/libstd/os/freebsd')
-rw-r--r--src/libstd/os/freebsd/raw.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/os/freebsd/raw.rs b/src/libstd/os/freebsd/raw.rs
index a810eff45d3..a3b95738a1a 100644
--- a/src/libstd/os/freebsd/raw.rs
+++ b/src/libstd/os/freebsd/raw.rs
@@ -11,7 +11,7 @@
 //! FreeBSD-specific raw type definitions
 
 use os::raw::c_long;
-use os::unix::raw::{uid_t, gid_t, pid_t};
+use os::unix::raw::{uid_t, gid_t};
 
 pub type blkcnt_t = i64;
 pub type blksize_t = i64;