authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-10-14 18:12:14-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-10-14 18:12:14-04:00
log46352f6bfe0a597670fbfc11f3e06f7cf038f2b5
treefef43ad0d1dc7a18d8fd82c26482ae803a75f759
parent531f3344dc219d851e652febebd698caa9d24d0f

std.io: remove unused constants


1 files changed, 0 insertions(+), 5 deletions(-)

std/io.zig-5
...@@ -70,11 +70,6 @@ error Unseekable;...@@ -70,11 +70,6 @@ error Unseekable;
70error EndOfFile;70error EndOfFile;
71error NoStdHandles;71error NoStdHandles;
7272
73pub const OpenRead = 0b0001;
74pub const OpenWrite = 0b0010;
75pub const OpenCreate = 0b0100;
76pub const OpenTruncate = 0b1000;
77
78pub const OutStream = struct {73pub const OutStream = struct {
79 fd: if (is_posix) i32 else void,74 fd: if (is_posix) i32 else void,
80 handle_id: if (is_windows) system.DWORD else void,75 handle_id: if (is_windows) system.DWORD else void,