zig/std/special
Andrew Kelley 9e234d4208 breaking change to std.io API
* Merge io.InStream and io.OutStream into io.File
 * Introduce io.OutStream and io.InStream interfaces
   - io.File implements both of these
 * Move mem.IncrementingAllocator to heap.IncrementingAllocator

Instead of:

```
%return std.io.stderr.printf("hello\n");
```

now do:

```
std.debug.warn("hello\n");
```

To print to stdout, see `io.getStdOut()`.

 * Rename std.ArrayList.resizeDown to std.ArrayList.shrink.
2017-10-31 04:47:55 -04:00
..
compiler_rt fix missing compiler_rt in release modes 2017-10-24 21:31:47 -04:00
bootstrap_lib.zig ability to make a DLL 2017-10-16 01:14:28 -04:00
bootstrap.zig implement environment variables for windows 2017-10-15 01:23:10 -04:00
build_file_template.zig std: add ChildProcess.kill 2017-09-06 18:30:45 -04:00
build_runner.zig breaking change to std.io API 2017-10-31 04:47:55 -04:00
builtin.zig remove zigrt 2017-09-30 20:21:57 -04:00
panic.zig remove zigrt 2017-09-30 20:21:57 -04:00
test_runner.zig breaking change to std.io API 2017-10-31 04:47:55 -04:00