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"
1111readme = " README.md"
1212categories = [" external-ffi-bindings" , " science" ]
1313keywords = [" linear-algebra" ]
14-
15- [dependencies ]
16- libc = " 0.2"
Original file line number Diff line number Diff line change 88#![ allow( non_camel_case_types) ]
99#![ no_std]
1010
11- use libc :: { c_char, c_double, c_float, c_int} ;
11+ use core :: ffi :: { c_char, c_double, c_float, c_int} ;
1212
1313/// A complex number with 64-bit parts.
1414#[ allow( bad_style) ]
15- pub type c_double_complex = [ libc :: c_double ; 2 ] ;
15+ pub type c_double_complex = [ c_double ; 2 ] ;
1616
1717/// A complex number with 32-bit parts.
1818#[ allow( bad_style) ]
19- pub type c_float_complex = [ libc :: c_float ; 2 ] ;
19+ pub type c_float_complex = [ c_float ; 2 ] ;
2020
2121pub type CBLAS_INDEX = c_int ;
2222
You can’t perform that action at this time.
0 commit comments