aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-10-14 18:12:14 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-10-14 18:12:14 -0400
commit46352f6bfe0a597670fbfc11f3e06f7cf038f2b5 (patch)
treefef43ad0d1dc7a18d8fd82c26482ae803a75f759
parent531f3344dc219d851e652febebd698caa9d24d0f (diff)
downloadzig-46352f6bfe0a597670fbfc11f3e06f7cf038f2b5.tar.gz
zig-46352f6bfe0a597670fbfc11f3e06f7cf038f2b5.zip
std.io: remove unused constants
-rw-r--r--std/io.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/std/io.zig b/std/io.zig
index 3774abb49b..bbca3896b8 100644
--- a/std/io.zig
+++ b/std/io.zig
@@ -70,11 +70,6 @@ error Unseekable;
error EndOfFile;
error NoStdHandles;
-pub const OpenRead = 0b0001;
-pub const OpenWrite = 0b0010;
-pub const OpenCreate = 0b0100;
-pub const OpenTruncate = 0b1000;
-
pub const OutStream = struct {
fd: if (is_posix) i32 else void,
handle_id: if (is_windows) system.DWORD else void,