We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
c.last_errno_error
1 parent bdf58d4 commit 128b10bCopy full SHA for 128b10b
lib/core/src/errors.ri
@@ -5,7 +5,11 @@
5
import c;
6
7
public alias ErrnoError = c.ErrnoError;
8
-public alias last_errno_error = c.last_errno_error;
+
9
+// FIXME: public alias last_errno_error = c.last_errno_error;
10
+public func last_errno_error() -> c.ErrnoError {
11
+ return c.last_errno_error();
12
+}
13
14
/// This trait is used for errors returned with result types (!T).
15
public trait Throwable < Stringable { }
0 commit comments