about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBlackHoleFox <blackholefoxdev@gmail.com>2022-08-08 17:49:19 -0700
committerBlackHoleFox <blackholefoxdev@gmail.com>2022-08-08 17:56:21 -0700
commit08c97323dee8b8558c8e1dc770885f0095360d32 (patch)
treea49d8c0e7b1791b05859bb14de50bc3a36cc108a
parentf03ce30962cf1b2a5158667eabae8bf6e8d1cb03 (diff)
downloadrust-08c97323dee8b8558c8e1dc770885f0095360d32.tar.gz
rust-08c97323dee8b8558c8e1dc770885f0095360d32.zip
Add standard C error function aliases
Aids the discoverability of `io::Error::last_os_error()` by linking to
commonly used error number functions from C/C++.
-rw-r--r--library/std/src/io/error.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs
index ff7fdcae16f..4e541dda906 100644
--- a/library/std/src/io/error.rs
+++ b/library/std/src/io/error.rs
@@ -564,6 +564,8 @@ impl Error {
     /// println!("last OS error: {os_error:?}");
     /// ```
     #[stable(feature = "rust1", since = "1.0.0")]
+    #[doc(alias = "GetLastError")]
+    #[doc(alias = "errno")]
     #[must_use]
     #[inline]
     pub fn last_os_error() -> Error {