hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 70a2d3adea98d6b87b603f9ab458bac2d1a15b35
parent 3f47a059ee6661d2240467eaf81895aadc60f005
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri, 13 May 2022 22:23:04 -0400

linux::keyctl: document error

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mlinux/keyctl/types.ha | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/linux/keyctl/types.ha b/linux/keyctl/types.ha @@ -6,6 +6,7 @@ export type serial = i32; // Returned when a desired key was not found. export type nokey = !void; +// A tagged union of all possible error types. export type error = !(nokey | errors::error); // The caller's thread-specific keyring.