Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
src
/
tools
/
rustfmt
/
tests
/
target
/
issue_4528.rs
blob: 7828804b098eadbe45c5699e74131b9d8269cb20 [
file
] [
log
] [
blame
]
#![
allow
(
clippy
::
no_effect
)]
extern
"C"
{
// N.B., mutability can be easily incorrect in FFI calls -- as
// in C, the default is mutable pointers.
fn
ffi
(
c
:
*
mut
u8
);
fn
int_ffi
(
c
:
*
mut
i32
);
}