aboutsummaryrefslogtreecommitdiff
path: root/std/io.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-04-18 16:42:56 -0700
committerAndrew Kelley <superjoe30@gmail.com>2016-04-18 16:42:56 -0700
commitf4c7e1bf4971503e2d33af80537aef27ed2e4fe1 (patch)
tree1d99e8d2cd97d30870f95f46b2efcf872ccfcc49 /std/io.zig
parent5e33175517807c6e50fe66f8d6c65fc094c8e11a (diff)
downloadzig-f4c7e1bf4971503e2d33af80537aef27ed2e4fe1.tar.gz
zig-f4c7e1bf4971503e2d33af80537aef27ed2e4fe1.zip
rearrange standard library a bit
Diffstat (limited to 'std/io.zig')
-rw-r--r--std/io.zig7
1 files changed, 0 insertions, 7 deletions
diff --git a/std/io.zig b/std/io.zig
index f579db6cd9..07a480f096 100644
--- a/std/io.zig
+++ b/std/io.zig
@@ -207,13 +207,6 @@ pub struct InStream {
}
}
-#attribute("cold")
-pub fn abort() -> unreachable {
- linux.raise(linux.SIGABRT);
- linux.raise(linux.SIGKILL);
- while (true) {}
-}
-
pub error InvalidChar;
pub error Overflow;