diff options
author | 2022-01-23 23:03:04 -0800 | |
---|---|---|
committer | 2022-01-23 23:03:04 -0800 | |
commit | f5a79ea6d28c5b459ab6bb2696d2d8af633dca88 (patch) | |
tree | 5be53c8d28c86443c6c5d1a2a0c95d3fb7eeb27a /src/io/io_linux.zig | |
parent | de0cf421115ed3814ccc4d46e4d6202aac792ba0 (diff) | |
download | bun-f5a79ea6d28c5b459ab6bb2696d2d8af633dca88.tar.gz bun-f5a79ea6d28c5b459ab6bb2696d2d8af633dca88.tar.zst bun-f5a79ea6d28c5b459ab6bb2696d2d8af633dca88.zip |
Update io_linux.zig
Diffstat (limited to 'src/io/io_linux.zig')
-rw-r--r-- | src/io/io_linux.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/io/io_linux.zig b/src/io/io_linux.zig index ea6c29284..780724dbe 100644 --- a/src/io/io_linux.zig +++ b/src/io/io_linux.zig @@ -100,6 +100,7 @@ const os = struct { /// but it's ~the same and is incompatible across operating systems /// https://lists.gnu.org/archive/html/bug-glibc/2002-08/msg00017.html pub const ENOTSUP = 95; + pub const EOPNOTSUPP = ENOTSUP; pub const EPFNOSUPPORT = 96; pub const EAFNOSUPPORT = 97; pub const EADDRINUSE = 98; |