//! Bindings to [LAPACK] \(Fortran).
//!
//! ## [Architecture]
//!
//! [architecture]: https://blas-lapack-rs.github.io/architecture
//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
extern crate libc;
use ;
/// A complex number with 64-bit parts.
pub type c_double_complex = ;
/// A complex number with 32-bit parts.
pub type c_float_complex = ;
pub type lapack_complex_double = c_double_complex;
pub type lapack_complex_float = c_float_complex;
pub type lapack_int = i32;
pub type lapack_logical = lapack_int;
include!;