(a: f32, b: f32)
| 20 | |
| 21 | #[no_mangle] |
| 22 | pub extern "C" fn add_f32(a: f32, b: f32) -> f32 { |
| 23 | a + b |
| 24 | } |
| 25 | |
| 26 | #[no_mangle] |
| 27 | pub extern "C" fn add_f64(a: f64, b: f64) -> f64 { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…