We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfee1ba commit fb4ac63Copy full SHA for fb4ac63
library/core/src/lib.rs
@@ -29,6 +29,10 @@
29
//! (Note that these are [standard assumptions](https://reviews.llvm.org/D86993) among compilers.)
30
//! These functions are often provided by the system libc, but can also be provided by the
31
//! [compiler-builtins crate](https://crates.io/crates/compiler_builtins).
32
+//! Note that the library does not guarantee that it will always make these assumptions, so Rust
33
+//! user code directly calling the C functions should follow the C specification! The advice for
34
+//! Rust user code is to call the functions provided by this library instead (such as
35
+//! `ptr::copy`).
36
//!
37
//! * `rust_begin_panic` - This function takes four arguments, a
38
//! `fmt::Arguments`, a `&'static str`, and two `u32`'s. These four arguments
0 commit comments