zig/std/os
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
..
windows fix std.io.InStream for windows 2017-10-15 16:45:43 -04:00
child_process.zig breaking change to std.io API 2017-10-31 04:47:55 -04:00
darwin.zig fix isatty for macOS and libc (#523) 2017-10-03 09:33:30 -04:00
darwin_errno.zig
get_user_id.zig std.os.ChildProcess: ability to set both uid and gid 2017-09-26 02:42:06 -04:00
index.zig breaking change to std.io API 2017-10-31 04:47:55 -04:00
linux.zig std.os.ChildProcess: ability to set both uid and gid 2017-09-26 02:42:06 -04:00
linux_errno.zig
linux_i386.zig
linux_x86_64.zig
path.zig breaking change to std.io API 2017-10-31 04:47:55 -04:00