Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/unsafe-rust/unsafe-functions/extern-c.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Unsafe External Functions

You can declare foreign functions for access from Rust with `unsafe extern`.
This is unsafe because the compiler has to way to reason about their behavior.
This is unsafe because the compiler has no way to reason about their behavior.
Functions declared in an `extern` block must be marked as `safe` or `unsafe`,
depending on whether they have preconditions for safe use:

Expand Down