rust/tests/rustdoc-js/extern-func.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
79 B
Rust
Raw Normal View History

use std::ffi::c_float;
extern "C" {
pub fn sqrt(x: c_float) -> c_float;
}