1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-03 11:09:12 +02:00

Mention other ABI options.

This commit is contained in:
Andrew Walbran 2023-01-20 10:56:30 +00:00
parent 95c0447e4b
commit c066ab5664

View File

@ -22,4 +22,7 @@ This is usually only a problem for extern functions which do things with pointer
violate Rust's memory model, but in general any C function might have undefined behaviour under any
arbitrary circumstances.
The `"C"` in this example is the ABI;
[other ABIs are available too](https://doc.rust-lang.org/reference/items/external-blocks.html).
</details>