Skip to content

Commit

Permalink
auto merge of #699 : alexcrichton/cargo/issue-695, r=brson
Browse files Browse the repository at this point in the history
Closes #695
  • Loading branch information
bors committed Oct 14, 2014
2 parents 8bc941b + e507d1a commit 4a82749
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/doc/native-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,11 @@ int foo() { return 1; }
```rust
// src/main.rs
extern crate libc;
#[link(name = "hello", kind = "static")]
extern {
fn foo() -> i32;
fn foo() -> libc::c_int;
}
fn main() {
Expand Down

0 comments on commit 4a82749

Please sign in to comment.