spral_sys/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4#![allow(improper_ctypes)]
5
6include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
7
8#[cfg(test)]
9mod tests {
10    use crate::{spral_matrix_type, spral_matrix_type_SPRAL_MATRIX_REAL_UNSYM};
11
12    #[test]
13    fn test_spral() {
14        let _t: spral_matrix_type = spral_matrix_type_SPRAL_MATRIX_REAL_UNSYM;
15    }
16}