diff options
| author | Steven Fackler <[email protected]> | 2014-04-06 21:15:15 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-04-06 21:15:15 -0700 |
| commit | a145df011cc7ed7fbff37227192427a11c6d3923 (patch) | |
| tree | a94c5e7724c8adff6a83d05584c4a3d3f0d93df4 /ssl/ffi.rs | |
| parent | Remove use of {:?} (diff) | |
| download | rust-openssl-a145df011cc7ed7fbff37227192427a11c6d3923.tar.xz rust-openssl-a145df011cc7ed7fbff37227192427a11c6d3923.zip | |
Update for libc split
Diffstat (limited to 'ssl/ffi.rs')
| -rw-r--r-- | ssl/ffi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ #![allow(non_camel_case_types)] -use std::libc::{c_int, c_void, c_long, c_ulong, c_char}; +use libc::{c_int, c_void, c_long, c_ulong, c_char}; pub type SSL_CTX = c_void; pub type SSL_METHOD = c_void; |