Commit a145df01 authored by Steven Fackler's avatar Steven Fackler
Browse files

Update for libc split

parent e8b79750
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
use std::libc::c_uint;
use std::libc;
use libc;
use libc::c_uint;
use std::ptr;
use std::slice;

+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

use std::libc::{c_uchar, c_int, c_uint};
use libc::{c_uchar, c_int, c_uint};
use std::ptr;
use std::slice;
use crypto::hash;
+1 −1
Original line number Diff line number Diff line
use std::libc::c_int;
use libc::c_int;
use std::slice;

#[link(name = "crypto")]
+2 −2
Original line number Diff line number Diff line
use std::cast;
use std::libc::{c_char, c_int, c_uint};
use std::libc;
use libc::{c_char, c_int, c_uint};
use libc;
use std::ptr;
use std::slice;
use crypto::hash::{HashType, MD5, SHA1, SHA224, SHA256, SHA384, SHA512};
+1 −1
Original line number Diff line number Diff line
use std::libc::c_int;
use libc::c_int;
use std::slice;

#[link(name = "crypto")]
Loading