Skip to content

Commit 10ae3a7

Browse files
---
yaml --- r: 232627 b: refs/heads/try c: 6cbef95 h: refs/heads/master i: 232625: 0fc38f3 232623: c88f92c v: v3
1 parent 54bae0d commit 10ae3a7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: edeb4f1c86cbf6af8ef9874d4b3af50f721ea1b8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: 7925c7972ee6f3ea08b90dba32a8eafe5bd71792
4+
refs/heads/try: 6cbef957f6685bdca185685a2fa9bc8cd8afebbd
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/libstd/sys/unix/backtrace/printing/dladdr.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
use io;
12+
use io::prelude::*;
13+
use libc;
14+
1115
pub fn print(w: &mut Write, idx: isize, addr: *mut libc::c_void,
1216
_symaddr: *mut libc::c_void) -> io::Result<()> {
1317
use sys::backtrace::{output};
1418
use intrinsics;
19+
use ffi::CStr;
20+
1521
#[repr(C)]
1622
struct Dl_info {
1723
dli_fname: *const libc::c_char,

0 commit comments

Comments
 (0)