diff options
| author | Steven Fackler <[email protected]> | 2014-10-08 12:59:19 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-10-08 12:59:19 -0400 |
| commit | 19eab0e7d729159104a0959c7c1209f1e8951db2 (patch) | |
| tree | c8964af75d74b97a4ff408d2aaad7510ed2c939b /src/ffi.rs | |
| parent | Merge pull request #73 from vhbit/minor-doc-fixes (diff) | |
| parent | X509 Generator sample (diff) | |
| download | rust-openssl-19eab0e7d729159104a0959c7c1209f1e8951db2.tar.xz rust-openssl-19eab0e7d729159104a0959c7c1209f1e8951db2.zip | |
Merge pull request #74 from vhbit/doc-samples
X509 Generator sample
Diffstat (limited to 'src/ffi.rs')
| -rwxr-xr-x | src/ffi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -193,7 +193,7 @@ extern { } pub unsafe fn BN_is_zero(a: *mut BIGNUM) -> c_int { bn_is_zero(a) } /* Special import from native/bn_is_zero.c */ -#[link(name="wrapped")] +#[link(name = "wrapped", kind = "static")] extern "C" { pub fn bn_is_zero(a: *mut BIGNUM) -> c_int; } |