diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-05-14 15:21:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-14 15:21:17 -0400 |
| commit | 826d833416be0fa696cbe8785173997338e185bb (patch) | |
| tree | 25567543887dcd5de646593a66a2d52b3683326d /lib/std/os | |
| parent | a52e47230718c6e38dfd84ac0571a597ecd9719f (diff) | |
| parent | 90a54f06e507e11ccf07c1378fe4a12b002ec2bd (diff) | |
| download | zig-826d833416be0fa696cbe8785173997338e185bb.tar.gz zig-826d833416be0fa696cbe8785173997338e185bb.zip | |
Merge pull request #8746 from koachan/sparc64-fixes
Various Linux/SPARCv9 fixes
Diffstat (limited to 'lib/std/os')
| -rw-r--r-- | lib/std/os/bits/linux/errno-sparc.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/os/bits/linux/errno-sparc.zig b/lib/std/os/bits/linux/errno-sparc.zig index bbeabaaef0..94b696fc35 100644 --- a/lib/std/os/bits/linux/errno-sparc.zig +++ b/lib/std/os/bits/linux/errno-sparc.zig @@ -52,6 +52,7 @@ pub const ENOPROTOOPT = 42; pub const EPROTONOSUPPORT = 43; pub const ESOCKTNOSUPPORT = 44; pub const EOPNOTSUPP = 45; +pub const ENOTSUP = EOPNOTSUPP; pub const EPFNOSUPPORT = 46; pub const EAFNOSUPPORT = 47; pub const EADDRINUSE = 48; |
