File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,3 @@ repository = "https://github.com/blas-lapack-rs/cblas-sys"
11
11
readme = " README.md"
12
12
categories = [" external-ffi-bindings" , " science" ]
13
13
keywords = [" linear-algebra" ]
14
-
15
- [dependencies ]
16
- libc = " 0.2"
Original file line number Diff line number Diff line change 8
8
#![ allow( non_camel_case_types) ]
9
9
#![ no_std]
10
10
11
- use libc :: { c_char, c_double, c_float, c_int} ;
11
+ use core :: ffi :: { c_char, c_double, c_float, c_int} ;
12
12
13
13
/// A complex number with 64-bit parts.
14
14
#[ allow( bad_style) ]
15
- pub type c_double_complex = [ libc :: c_double ; 2 ] ;
15
+ pub type c_double_complex = [ c_double ; 2 ] ;
16
16
17
17
/// A complex number with 32-bit parts.
18
18
#[ allow( bad_style) ]
19
- pub type c_float_complex = [ libc :: c_float ; 2 ] ;
19
+ pub type c_float_complex = [ c_float ; 2 ] ;
20
20
21
21
pub type CBLAS_INDEX = c_int ;
22
22
You can’t perform that action at this time.
0 commit comments