hare

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

commit 934d35bdab15d8e6c5f2a0d47a6c0feacbf31026
parent d510ed76a96ab1bdcfe021a3b61bd6bb84a4d72b
Author: Sebastian <sebastian@sebsite.pw>
Date:   Mon, 10 Oct 2022 17:26:59 -0400

rt+linux: add ENOTSUP

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

Diffstat:
Mrt/+linux/errno.ha | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/rt/+linux/errno.ha b/rt/+linux/errno.ha @@ -652,6 +652,7 @@ export def ENOPROTOOPT: int = 92; export def EPROTONOSUPPORT: int = 93; export def ESOCKTNOSUPPORT: int = 94; export def EOPNOTSUPP: int = 95; +export def ENOTSUP: int = EOPNOTSUPP; export def EPFNOSUPPORT: int = 96; export def EAFNOSUPPORT: int = 97; export def EADDRINUSE: int = 98;